MCPcopy Create free account
hub / github.com/numpy/numpy / f2py_stop_call_clock

Function f2py_stop_call_clock

numpy/f2py/src/fortranobject.c:601–609  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

599 passed_time += stop_time.millitm - start_time.millitm;
600}
601extern void
602f2py_stop_call_clock(void)
603{
604 ftime(&stop_call_time);
605 passed_call_time += 1000 * (stop_call_time.time - start_call_time.time);
606 passed_call_time += stop_call_time.millitm - start_call_time.millitm;
607 passed_counter += 1;
608 f2py_start_clock();
609}
610
611extern void
612f2py_cb_start_clock(void)

Callers

nothing calls this directly

Calls 1

f2py_start_clockFunction · 0.85

Tested by

no test coverage detected