Skip to content

Commit ac5a3f2

Browse files
committed
Filter only sycl benchmarks on computeBench
1 parent 6d54d64 commit ac5a3f2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Diff for: devops/scripts/benchmarks/benches/compute.py

+4
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,10 @@ def enabled_runtimes(self, supported_runtimes=None):
115115
if options.ur is None:
116116
runtimes = [r for r in runtimes if r != RUNTIMES.UR]
117117

118+
# Filter out L0 if cuda backend
119+
if options.ur_adapter == "cuda":
120+
runtimes = [r for r in runtimes if r != RUNTIMES.LEVEL_ZERO]
121+
118122
return runtimes
119123

120124
def benchmarks(self) -> list[Benchmark]:

0 commit comments

Comments
 (0)