我正在尝试学习papi api来监视各种CPU事件的性能。首先,我运行了PAPI官方文档中提到的示例片段之一。下面是代码
#include<stdio.h>
#include <unistd.h>
#include "papi.h"
#define NUM_EVENTS 2
int main()
{
int Events[NUM_EVENTS] = {PAPI_TOT_INS, PAPI_TOT_CYC};
int num1=1234;
int num2=9876;
int res1,res2;
long_long values[NUM_EVENTS];
/* Start counting events */
if (PAPI_start_counters(Events, NUM_EVENTS) != PAPI_OK)
printf("\nerror!!!\n");
//handle_error(1);
/* Do some computation here*/
res1=num1*num2;
printf("\n%d",res1);
/* Read the counters */
if (PAPI_read_counters(values, NUM_EVENTS) != PAPI_OK)
printf("\nerror!!!\n");
/* Do some computation here */
res2=num1+num2;
printf("\n%d",res2);
/* Stop counting events */
if (PAPI_stop_counters(values, NUM_EVENTS) != PAPI_OK)
printf("\nerror!!!\n");
return 0;
}
我使用以下包含文件路径对其进行了编译
gcc -I/home/sabarna/Desktop/DEV/clockCycle/papi/src/ papi_try1.c -L/home/sabarna/Desktop/DEV/clockCycle/papi/src/ -lpapi
执行a.out时出现错误
/a.out: error while loading shared libraries: libpapi.so.5: cannot open shared object file: No such file or directory
我尝试通过导出LD_PRELOAD来解决此问题,但这没有用。有人可以帮我吗?我从来没有使用过PAPI API,所以我不知道我是否以正确的方式编译它。
答案 0 :(得分:1)
没有理由预加载该库,请尝试定义/修改LD_LIBRARY_PATH而不是LD_PRELOAD
-L/home/sabarna/Desktop/DEV/clockCycle/papi/src/
似乎表明您已编译但未安装
如果设置LD_xxx与/home/sabarna/Desktop/DEV/clockCycle/papi/src/
该装置的lib必须在目录/home/sabarna/Desktop/DEV/clockCycle/papi/src/
不别处,使/home/sabarna/Desktop/DEV/clockCycle/papi/src/libpapy.so
和/或/home/sabarna/Desktop/DEV/clockCycle/papi/src/libpapy.so.<number>
存在