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

Function f2py_cb_stop_call_clock

numpy/f2py/src/fortranobject.c:629–639  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

627 cb_passed_time += cb_stop_time.millitm - cb_start_time.millitm;
628}
629extern void
630f2py_cb_stop_call_clock(void)
631{
632 ftime(&cb_stop_call_time);
633 cb_passed_call_time +=
634 1000 * (cb_stop_call_time.time - cb_start_call_time.time);
635 cb_passed_call_time +=
636 cb_stop_call_time.millitm - cb_start_call_time.millitm;
637 cb_passed_counter += 1;
638 f2py_cb_start_clock();
639}
640
641static int f2py_report_on_exit_been_here = 0;
642extern void

Callers

nothing calls this directly

Calls 1

f2py_cb_start_clockFunction · 0.85

Tested by

no test coverage detected