Skip to content

Commit dfcd9c5

Browse files
committed
[Benchmarks] Use combo profiler in UR SubmitKernel scenarios
1 parent 753ab35 commit dfcd9c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

devops/scripts/benchmarks/benches/compute.py

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

6262
def git_hash(self) -> str:
63-
# Sep 25, 2025
64-
return "7ba2e629404e34c635a46f28550a0952717d120f"
63+
# Sep 26, 2025
64+
return "db0d6708a37de69d844d6521ca06ef35b1cc55af"
6565

6666
def setup(self) -> None:
6767
if options.sycl is None:
@@ -192,7 +192,7 @@ def benchmarks(self) -> list[Benchmark]:
192192
kernel_exec_time,
193193
)
194194
)
195-
if runtime == RUNTIMES.SYCL:
195+
if runtime in (RUNTIMES.SYCL, RUNTIMES.UR):
196196
# Create CPU count variant
197197
benches.append(
198198
SubmitKernel(
@@ -616,7 +616,7 @@ def bin_args(self, run_trace: TracingType = TracingType.NONE) -> list[str]:
616616
f"--KernelExecTime={self.KernelExecTime}",
617617
f"--UseEvents={self.UseEvents}",
618618
]
619-
if self.runtime == RUNTIMES.SYCL:
619+
if self.runtime == RUNTIMES.SYCL or self.runtime == RUNTIMES.UR:
620620
bin_args.append(f"--profilerType={self.profiler_type.value}")
621621
return bin_args
622622

0 commit comments

Comments
 (0)