gpt4 book ai didi

c - 两个 gettimeofday() 调用的差异给出负数

转载 作者:行者123 更新时间:2023-12-04 11:06:29 27 4
gpt4 key购买 nike

我正在尝试计算系统调用的平均开销,因此我重复执行 0 字节读取系统调用,并将平均开销计算为时间差除以迭代次数。但是,有时当我这样做时,我会得到一个负数。这是我的代码:

#include <unistd.h>
#include <stdio.h>
#include <sys/time.h>
#define NUM_ITER 1000000
#define NUM_EPOCHS 10

int main(){
char buf[1];
struct timeval tv1, tv2;
for(int i = 0; i<NUM_EPOCHS; i++){
gettimeofday(&tv1, NULL);
for(int j = 0; j < NUM_ITER; j++)
read(0, buf, 0);
gettimeofday(&tv2, NULL);
float time_of_sys_call = (float)(tv2.tv_usec - tv1.tv_usec) / NUM_ITER;
printf("Avg cost of system call: %fms\n", time_of_sys_call);
}
}

这是示例输出:
Avg cost of system call: 0.199954ms
Avg cost of system call: 0.213105ms
Avg cost of system call: 0.203455ms
Avg cost of system call: 0.200443ms
Avg cost of system call: -0.793516ms
Avg cost of system call: 0.203922ms
Avg cost of system call: 0.209279ms
Avg cost of system call: 0.201137ms
Avg cost of system call: 0.204261ms
Avg cost of system call: -0.800930ms

知道这里发生了什么吗?

最佳答案

tv_usec给出当前秒内的微秒数。当时间累积到一整秒时,tv_sec增加,和 tv_usec从零开始。

当您从重新启动前不久的数字中减去重新启动后不久的数字时,结果为负数。

关于c - 两个 gettimeofday() 调用的差异给出负数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60357137/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com