File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -441,7 +441,7 @@ def open_check_file(file_name):
441441 "{} {}" .format (config .run_launcher , sycl_ls ) if config .run_launcher else sycl_ls
442442 )
443443 sp = subprocess .check_output (cmd , text = True , shell = True )
444- for line in sp .splitlines ():
444+ for line in sp .splitlines ():
445445 if not line .startswith ("[" ):
446446 continue
447447 (backend , device ) = line [1 :].split ("]" )[0 ].split (":" )
@@ -770,7 +770,7 @@ def open_check_file(file_name):
770770 if amd_arch_prefix not in arch or len (architecture_feature ) != 1 :
771771 lit_config .error (
772772 "Cannot detect architecture for AMD HIP device, specify it explicitly"
773- )
773+ )
774774 config .amd_arch = arch .replace (amd_arch_prefix , "" )
775775 llvm_config .with_system_environment ("ROCM_PATH" )
776776 config .available_features .add ("hip_amd" )
@@ -804,7 +804,7 @@ def open_check_file(file_name):
804804 )
805805 config .substitutions .append (
806806 ("%clang" , " " + config .dpcpp_compiler + " " + config .c_flags )
807- )
807+ )
808808
809809# Set timeout for a single test
810810try :
You can’t perform that action at this time.
0 commit comments