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]:
218
218
219
219
# Add GraphApiSubmitGraph benchmarks
220
220
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
- )
234
221
for num_kernels in self .submit_graph_num_kernels :
235
222
for measure_completion_time in [0 , 1 ]:
236
223
for use_events in [0 , 1 ]:
@@ -1009,6 +996,9 @@ def __init__(
1009
996
profiler_type ,
1010
997
)
1011
998
999
+ def supported_runtimes (self ) -> list [RUNTIMES ]:
1000
+ return super ().supported_runtimes () + [RUNTIMES .SYCL_PREVIEW ]
1001
+
1012
1002
def explicit_group (self ):
1013
1003
return f"SubmitGraph { self .ioq_str } { self .measure_str } { self .use_events_str } { self .host_tasks_str } , { self .numKernels } kernels"
1014
1004
You can’t perform that action at this time.
0 commit comments