| 337 | timer_start = t.QuadPart; |
| 338 | } |
| 339 | int64_t ggml_time_ms(void) { |
| 340 | LARGE_INTEGER t; |
| 341 | QueryPerformanceCounter(&t); |
| 342 | return ((t.QuadPart-timer_start) * 1000) / timer_freq; |
| 343 | } |
| 344 | int64_t ggml_time_us(void) { |
| 345 | LARGE_INTEGER t; |
| 346 | QueryPerformanceCounter(&t); |
no outgoing calls
no test coverage detected