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