Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
49
nano_time_t
50
conv2millisec(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
61
nano_time_t
62
getCurrentTime(void)
Callers
1
images
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected