File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed
devops/scripts/benchmarks/benches Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments