MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / conv2millisec

Function conv2millisec

src/tests/timer.c:49–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47}
48
49nano_time_t
50conv2millisec(nano_time_t t)
51{
52 LARGE_INTEGER count;
53
54 if (QueryPerformanceFrequency(&count) == FALSE) {
55 return 0;
56 }
57
58 return (t * 1000) / count.QuadPart;
59}
60
61nano_time_t
62getCurrentTime(void)

Callers 1

imagesMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected