MCPcopy Create free account
hub / github.com/NVIDIA/cutlass / __init__

Method __init__

python/cutlass_cppgen/utils/profiler.py:98–103  ·  view source on GitHub ↗
(self, op: OperationBase, warmup_iterations: int=500, iterations: int=500, *args, **kwargs)

Source from the content-addressed store, hash-verified

96
97class CUDAEventProfiler:
98 def __init__(self, op: OperationBase, warmup_iterations: int=500, iterations: int=500, *args, **kwargs) -> None:
99 self.arguments = op.run(*args, **kwargs)
100 self.operation = op.operation
101 self.warmup_iterations = warmup_iterations
102 self.iterations = iterations
103 self.timer = GpuTimer()
104
105 #
106 # Cutlass Python Interface Profiler

Callers

nothing calls this directly

Calls 2

GpuTimerClass · 0.70
runMethod · 0.45

Tested by

no test coverage detected