Skip to content

Commit 0f5c5e2

Browse files
[Bench] Bump Compute Benchmarks version (intel#21497)
to include new UR CMake search and torch benchmark refactor.
1 parent 32f9bb2 commit 0f5c5e2

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

devops/scripts/benchmarks/benches/compute/compute.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def git_url(self) -> str:
4040
return "https://github.com/intel/compute-benchmarks.git"
4141

4242
def git_hash(self) -> str:
43-
# Mar 11, 2026
44-
return "5daa36aef97c1a57ca94aed2b43ed5d6829bcc11"
43+
# Mar 13, 2026
44+
return "0237dade20798127c6432635b47c6bdb2f9d59b0"
4545

4646
def setup(self) -> None:
4747
if options.sycl is None:
@@ -581,8 +581,8 @@ def createTorchGraphMultiQueueBench(variant_name: str, **kwargs):
581581
variant_name,
582582
profiler_type,
583583
fixed_args={
584-
"workgroupCount": 512,
585-
"workgroupSize": 256,
584+
"KernelWGCount": 512,
585+
"KernelWGSize": 256,
586586
"Profiling": 0,
587587
"UseEvents": 0,
588588
},
@@ -592,15 +592,15 @@ def createTorchGraphMultiQueueBench(variant_name: str, **kwargs):
592592
benches += [
593593
createTorchGraphMultiQueueBench(
594594
"small",
595-
kernelsPerQueue=10,
595+
KernelsPerQueue=10,
596596
),
597597
createTorchGraphMultiQueueBench(
598598
"medium",
599-
kernelsPerQueue=32,
599+
KernelsPerQueue=32,
600600
),
601601
createTorchGraphMultiQueueBench(
602602
"large",
603-
kernelsPerQueue=64,
603+
KernelsPerQueue=64,
604604
),
605605
]
606606

devops/scripts/benchmarks/tests/test_integration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def test_torch_l0(self):
285285
{"pytorch", "L0"},
286286
)
287287
self._checkCase(
288-
"torch_benchmark_l0 KernelSubmitGraphMultiQueue kernelsPerQueue 64 CPU count",
288+
"torch_benchmark_l0 KernelSubmitGraphMultiQueue KernelsPerQueue 64 CPU count",
289289
"KernelSubmitGraphMultiQueue large, CPU count",
290290
{"pytorch", "L0"},
291291
)
@@ -334,7 +334,7 @@ def test_torch_sycl(self):
334334
{"pytorch", "SYCL"},
335335
)
336336
self._checkCase(
337-
"torch_benchmark_sycl KernelSubmitGraphMultiQueue kernelsPerQueue 32 CPU count",
337+
"torch_benchmark_sycl KernelSubmitGraphMultiQueue KernelsPerQueue 32 CPU count",
338338
"KernelSubmitGraphMultiQueue medium, CPU count",
339339
{"pytorch", "SYCL"},
340340
)
@@ -388,7 +388,7 @@ def test_torch_syclpreview(self):
388388
{"pytorch", "SYCL"},
389389
)
390390
self._checkCase(
391-
"torch_benchmark_syclpreview KernelSubmitGraphMultiQueue kernelsPerQueue 10",
391+
"torch_benchmark_syclpreview KernelSubmitGraphMultiQueue KernelsPerQueue 10",
392392
"KernelSubmitGraphMultiQueue small",
393393
{"pytorch", "SYCL"},
394394
)

0 commit comments

Comments
 (0)