Method
__init__
(self, op: OperationBase, warmup_iterations: int=500, iterations: int=500, *args, **kwargs)
Source from the content-addressed store, hash-verified
| 96 | |
| 97 | class 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
Tested by
no test coverage detected