| 192 | |
| 193 | # Representation of the benchmark result from a single experiment |
| 194 | class BenchmarkResult(NamedTuple): |
| 195 | gemm_param: GEMMParam |
| 196 | strategy: Strategy |
| 197 | gemm_config: GEMMConfigT |
| 198 | measurement: Measurement |
| 199 | |
| 200 | |
| 201 | class GEMMBenchmarkResultRecorder: |
no outgoing calls
no test coverage detected