1

如果我有一个函数foo我想分析它的“用户”时间(删除内核或其他进程时间),我如何在代码(C/C++)中测量它?

我知道以下功能:

视窗

  1. 查询性能计数器
  2. 获取处理时间

Linux

  1. 获取时间

还有更多的方法吗?每个都提供了不同的时间“视图”,并没有真正提供准确的结果。

4

2 回答 2

2

Linux 上的最佳方法如下:(从 Linux 内核perf_event_open手册页中提取和修改)

代码:

#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>
#include <linux/perf_event.h>
#include <asm/unistd.h>

long
perf_event_open(struct perf_event_attr *hw_event, pid_t pid,
            int cpu, int group_fd, unsigned long flags)
{
    int ret;

    ret = syscall(__NR_perf_event_open, hw_event, pid, cpu,
               group_fd, flags);
    return ret;
}

int
main(int argc, char **argv)
{
    struct perf_event_attr pe;
    long long count;
    int fd;

    memset(&pe, 0, sizeof(struct perf_event_attr));
    pe.type = PERF_TYPE_HARDWARE;
    pe.size = sizeof(struct perf_event_attr);
    pe.config = PERF_COUNT_HW_INSTRUCTIONS;
    pe.disabled = 1;
    pe.exclude_kernel = 1;
    pe.exclude_hv = 1;

    fd = perf_event_open(&pe, 0, -1, -1, 0);
    if (fd == -1) {
       fprintf(stderr, "Error opening leader %llx\n", pe.config);
       exit(EXIT_FAILURE);
    }

    ioctl(fd, PERF_EVENT_IOC_RESET, 0);
    ioctl(fd, PERF_EVENT_IOC_ENABLE, 0);

    printf("Measuring instruction count for this printf\n");

    ioctl(fd, PERF_EVENT_IOC_DISABLE, 0);
    read(fd, &count, sizeof(long long));

    printf("Used %lld instructions\n", count);

    close(fd);
}
于 2013-04-17T16:08:36.470 回答
1

在类 Unix 系统getrusage上是您正在寻找的。特别是RUSAGE_SELF选项。用户时间将在 中的ru_utime字段中struct rusageru_stime计算系统时间。

于 2013-04-04T11:27:28.247 回答