We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37cad01 commit 92bac8eCopy full SHA for 92bac8e
extension/llm/runner/util.h
@@ -40,7 +40,7 @@ void inline safe_printf(const char* piece) {
40
long inline time_in_ms() {
41
// return time in milliseconds, for benchmarking the model speed
42
struct timespec time;
43
- clock_gettime(CLOCK_REALTIME, &time);
+ timespec_get(&time, TIME_UTC);
44
return time.tv_sec * 1000 + time.tv_nsec / 1000000;
45
}
46
0 commit comments