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

Function conv2microsec

src/tests/timer.c:37–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35}
36
37nano_time_t
38conv2microsec(nano_time_t t)
39{
40 LARGE_INTEGER count;
41
42 if (QueryPerformanceFrequency(&count) == FALSE) {
43 return 0;
44 }
45
46 return (t * 1000000ULL)/count.QuadPart;
47}
48
49nano_time_t
50conv2millisec(nano_time_t t)

Callers 1

runMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected