Skip to content

Commit 3d70ed8

Browse files
committed
format
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent a13923f commit 3d70ed8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

sycl/test-e2e/lit.cfg.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,11 @@ def open_check_file(file_name):
469469
if cl_options:
470470
hip_options = (
471471
" "
472-
+ (config.hip_libs_dir + "/amdhip64_6.lib " if config.hip_libs_dir else "amdhip64_6.lib")
472+
+ (
473+
config.hip_libs_dir + "/amdhip64_6.lib "
474+
if config.hip_libs_dir
475+
else "amdhip64_6.lib"
476+
)
473477
+ " /I"
474478
+ config.hip_include
475479
)
@@ -483,7 +487,7 @@ def open_check_file(file_name):
483487
config.substitutions.append(("%hip_options", hip_options))
484488
else:
485489
config.substitutions.append(("%hip_options", ""))
486-
490+
487491
# Check for OpenCL ICD
488492
if config.opencl_libs_dir:
489493
if cl_options:

0 commit comments

Comments
 (0)