Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 3 additions & 13 deletions devops/scripts/benchmarks/benches/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,19 +218,6 @@ def benchmarks(self) -> list[Benchmark]:

# Add GraphApiSubmitGraph benchmarks
for in_order_queue in [0, 1]:
for profiler_type in profiler_types:
benches.append(
GraphApiSubmitGraph(
self,
runtime,
in_order_queue,
self.submit_graph_num_kernels[-1],
0,
profiler_type,
useEvents=0,
useHostTasks=1,
)
)
for num_kernels in self.submit_graph_num_kernels:
for measure_completion_time in [0, 1]:
for use_events in [0, 1]:
Expand Down Expand Up @@ -1009,6 +996,9 @@ def __init__(
profiler_type,
)

def supported_runtimes(self) -> list[RUNTIMES]:
return super().supported_runtimes() + [RUNTIMES.SYCL_PREVIEW]

def explicit_group(self):
return f"SubmitGraph {self.ioq_str}{self.measure_str}{self.use_events_str}{self.host_tasks_str}, {self.numKernels} kernels"

Expand Down