File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
devops/scripts/benchmarks/benches Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments