(module_name, time_used, perf_counters)
| 356 | |
| 357 | |
| 358 | def addModuleCodeGenerationTimeInformation(module_name, time_used, perf_counters): |
| 359 | module_generation_time_infos[module_name] = ModuleCodeGenerationTimingInfo( |
| 360 | time_used=time_used, |
| 361 | cpu_instr_count=perf_counters[0], |
| 362 | cpu_cycles_count=perf_counters[1], |
| 363 | ) |
| 364 | |
| 365 | |
| 366 | def getModuleCodeGenerationTimingInfos(module_name): |
no outgoing calls
no test coverage detected
searching dependent graphs…