@@ -20,7 +20,7 @@ def setup(self):
2020 if self .built :
2121 return
2222
23- repo_path = git_clone (self .directory , "compute-benchmarks-repo" , "https://github.com/intel/compute-benchmarks.git" , "f6882552215736f90295244046fcb6e17fe53e83 " )
23+ repo_path = git_clone (self .directory , "compute-benchmarks-repo" , "https://github.com/intel/compute-benchmarks.git" , "08c41bb8bc1762ad53c6194df6d36bfcceff4aa2 " )
2424 build_path = create_build_path (self .directory , 'compute-benchmarks-build' )
2525
2626 configure_command = [
@@ -34,12 +34,13 @@ def setup(self):
3434 f"-DBUILD_UR=ON" ,
3535 f"-Dunified-runtime_DIR={ options .ur_dir } /lib/cmake/unified-runtime" ,
3636 ]
37- run (configure_command , add_sycl = True )
3837
38+ print (f"{ self .__class__ .__name__ } : Run { configure_command } " )
39+ run (configure_command , add_sycl = True )
40+ print (f"{ self .__class__ .__name__ } : Run cmake --build { build_path } -j" )
3941 run (f"cmake --build { build_path } -j" , add_sycl = True )
4042
4143 self .built = True
42- self .bins = os .path .join (build_path , 'bin' )
4344
4445class ComputeBenchmark (Benchmark ):
4546 def __init__ (self , bench , name , test ):
@@ -58,8 +59,8 @@ def unit(self):
5859 return "μs"
5960
6061 def setup (self ):
62+ self .benchmark_bin = os .path .join (self .bench .directory , 'compute-benchmarks-build' , 'bin' , self .bench_name )
6163 self .bench .setup ()
62- self .benchmark_bin = os .path .join (self .bench .bins , self .bench_name )
6364
6465 def run (self , env_vars ) -> list [Result ]:
6566 command = [
0 commit comments