Skip to content

Commit fd812e1

Browse files
committed
fixed typo
1 parent 518f3b8 commit fd812e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,8 @@ def benchmarks(self) -> list[Benchmark]:
269269
)
270270
)
271271

272-
record_and_reply_params = product(list(PROFILERS), [0, 1], [0, 1])
273-
for profiler_type, emulate, instantiate in record_and_reply_params:
272+
record_and_replay_params = product(list(PROFILERS), [0, 1], [0, 1])
273+
for profiler_type, emulate, instantiate in record_and_replay_params:
274274
benches += [
275275
RecordAndReplay(
276276
self,
@@ -728,7 +728,7 @@ def display_name(self) -> str:
728728
return self.name()
729729

730730
def description(self) -> str:
731-
return f"{self.runtime.value} Graphs record and reply"
731+
return f"{self.runtime.value} Graphs record and replay"
732732

733733
def get_tags(self):
734734
return ["L0"]

0 commit comments

Comments
 (0)