MCPcopy Create free account
hub / github.com/appdevforall/CodeOnTheGo / ggml_time_ms

Function ggml_time_ms

subprojects/llama.cpp/ggml/src/ggml.c:524–528  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522 timer_start = t.QuadPart;
523}
524int64_t ggml_time_ms(void) {
525 LARGE_INTEGER t;
526 QueryPerformanceCounter(&t);
527 return ((t.QuadPart-timer_start) * 1000) / timer_freq;
528}
529int64_t ggml_time_us(void) {
530 LARGE_INTEGER t;
531 QueryPerformanceCounter(&t);

Callers 11

postMethod · 0.85
deferMethod · 0.85
pop_deferred_taskMethod · 0.85
start_loopMethod · 0.85
unload_lruMethod · 0.85
loadMethod · 0.85
proxy_requestMethod · 0.85
process_chunkMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected