Skip to content

Commit 3ee3f1f

Browse files
authored
[CI][Benchmarks] SYCL Graph: Disable host task and enable SYCL preview (#20105)
Host task data makes comparison charts unreadable, so we disable it for now.
1 parent 5a03612 commit 3ee3f1f

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -218,19 +218,6 @@ def benchmarks(self) -> list[Benchmark]:
218218

219219
# Add GraphApiSubmitGraph benchmarks
220220
for in_order_queue in [0, 1]:
221-
for profiler_type in profiler_types:
222-
benches.append(
223-
GraphApiSubmitGraph(
224-
self,
225-
runtime,
226-
in_order_queue,
227-
self.submit_graph_num_kernels[-1],
228-
0,
229-
profiler_type,
230-
useEvents=0,
231-
useHostTasks=1,
232-
)
233-
)
234221
for num_kernels in self.submit_graph_num_kernels:
235222
for measure_completion_time in [0, 1]:
236223
for use_events in [0, 1]:
@@ -1009,6 +996,9 @@ def __init__(
1009996
profiler_type,
1010997
)
1011998

999+
def supported_runtimes(self) -> list[RUNTIMES]:
1000+
return super().supported_runtimes() + [RUNTIMES.SYCL_PREVIEW]
1001+
10121002
def explicit_group(self):
10131003
return f"SubmitGraph {self.ioq_str}{self.measure_str}{self.use_events_str}{self.host_tasks_str}, {self.numKernels} kernels"
10141004

0 commit comments

Comments
 (0)