@@ -49,7 +49,7 @@ def git_url(self) -> str:
49
49
return "https://github.com/intel/compute-benchmarks.git"
50
50
51
51
def git_hash (self ) -> str :
52
- return "9c1ed6fd59a7a40f8829251df4b5c0d847591183 "
52
+ return "5e4e39cabd0f74422754890ff8e362789c714543 "
53
53
54
54
def setup (self ):
55
55
if options .sycl is None :
@@ -168,7 +168,7 @@ def benchmarks(self) -> list[Benchmark]:
168
168
benches .append (UllsKernelSwitch (self , runtime , 8 , 200 , 0 , 0 , 1 , 1 ))
169
169
170
170
# Add GraphApiSubmitGraph benchmarks
171
- for runtime in self .enabled_runtimes ([ RUNTIMES . SYCL , RUNTIMES . UR ] ):
171
+ for runtime in self .enabled_runtimes ():
172
172
for in_order_queue in [0 , 1 ]:
173
173
for num_kernels in [4 , 10 , 32 ]:
174
174
for measure_completion_time in [0 , 1 ]:
@@ -640,7 +640,7 @@ def bin_args(self) -> list[str]:
640
640
641
641
642
642
# 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
644
644
# unify the benchmark naming scheme with SubmitKernel.
645
645
class GraphApiSubmitGraph (ComputeBenchmark ):
646
646
def __init__ (
@@ -681,7 +681,8 @@ def bin_args(self) -> list[str]:
681
681
f"--InOrderQueue={ self .inOrderQueue } " ,
682
682
"--Profiling=0" ,
683
683
"--KernelExecutionTime=1" ,
684
- "--NoEvents=1" , # not all implementations support NoEvents=0
684
+ "--UseEvents=0" , # not all implementations support UseEvents=1
685
+ "--UseExplicit=0" ,
685
686
]
686
687
687
688
0 commit comments