Skip to content

Commit a4488a7

Browse files
authored
[CI][Benchmarks] update to latest compute-benchmarks (#18267)
Changes include: [Update level-zero-sdk to 1.21.9](intel/compute-benchmarks@7a071bd) [[SYCL][Graph] Adding explicit mode and renaming no events](intel/compute-benchmarks@5efe7fd) [[L0] Add implementation of submit graph](intel/compute-benchmarks@b52da3b) [Fix warmup in UR impl of SubmitKernel benchmark](intel/compute-benchmarks@5e4e39c) [fix: add capability check for usm shared migrate gpu for fill](intel/compute-benchmarks@6dce721)
1 parent 53a718f commit a4488a7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

devops/scripts/benchmarks/benches/compute.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def git_url(self) -> str:
4949
return "https://github.com/intel/compute-benchmarks.git"
5050

5151
def git_hash(self) -> str:
52-
return "9c1ed6fd59a7a40f8829251df4b5c0d847591183"
52+
return "5e4e39cabd0f74422754890ff8e362789c714543"
5353

5454
def setup(self):
5555
if options.sycl is None:
@@ -168,7 +168,7 @@ def benchmarks(self) -> list[Benchmark]:
168168
benches.append(UllsKernelSwitch(self, runtime, 8, 200, 0, 0, 1, 1))
169169

170170
# Add GraphApiSubmitGraph benchmarks
171-
for runtime in self.enabled_runtimes([RUNTIMES.SYCL, RUNTIMES.UR]):
171+
for runtime in self.enabled_runtimes():
172172
for in_order_queue in [0, 1]:
173173
for num_kernels in [4, 10, 32]:
174174
for measure_completion_time in [0, 1]:
@@ -640,7 +640,7 @@ def bin_args(self) -> list[str]:
640640

641641

642642
# TODO: once L0 SubmitGraph exists, this needs to be cleaned up split benchmarks into more groups,
643-
# set all the parameters (NoEvents 0/1, which should get inverted into UseEvents) and
643+
# set all the parameters (UseEvents 0/1) and
644644
# unify the benchmark naming scheme with SubmitKernel.
645645
class GraphApiSubmitGraph(ComputeBenchmark):
646646
def __init__(
@@ -681,7 +681,8 @@ def bin_args(self) -> list[str]:
681681
f"--InOrderQueue={self.inOrderQueue}",
682682
"--Profiling=0",
683683
"--KernelExecutionTime=1",
684-
"--NoEvents=1", # not all implementations support NoEvents=0
684+
"--UseEvents=0", # not all implementations support UseEvents=1
685+
"--UseExplicit=0",
685686
]
686687

687688

0 commit comments

Comments
 (0)