MCPcopy
hub / github.com/Nuitka/Nuitka / addModuleCodeGenerationTimeInformation

Function addModuleCodeGenerationTimeInformation

nuitka/ModuleRegistry.py:358–363  ·  view source on GitHub ↗
(module_name, time_used, perf_counters)

Source from the content-addressed store, hash-verified

356
357
358def 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
366def getModuleCodeGenerationTimingInfos(module_name):

Callers 1

generateModuleCodeFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…