File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
devops/scripts/benchmarks Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ def git_info_from_path(path: Path) -> (str, str):
97
97
98
98
if options .git_commit_override is None or options .github_repo_override is None :
99
99
if options .detect_versions .sycl :
100
+ print (f"Auto-detecting sycl version..." )
100
101
github_repo , git_hash = DetectVersion .instance ().get_dpcpp_git_info ()
101
102
else :
102
103
git_hash , github_repo = git_info_from_path (
@@ -128,6 +129,7 @@ def git_info_from_path(path: Path) -> (str, str):
128
129
if options .build_compute_runtime :
129
130
compute_runtime = options .compute_runtime_tag
130
131
elif options .detect_versions .compute_runtime :
132
+ print (f"Auto-detecting compute_runtime version..." )
131
133
detect_res = DetectVersion .instance ()
132
134
compute_runtime = detect_res .get_compute_runtime_ver ()
133
135
if detect_res .get_compute_runtime_ver_cached () is None :
Original file line number Diff line number Diff line change @@ -617,7 +617,6 @@ def validate_and_parse_env_args(env_args):
617
617
parser .error (f"Specified --detect-version-cpp-path is not a valid file" )
618
618
619
619
enabled_components = args .detect_version .split ("," )
620
- print (f"Detecting versions in { enabled_components } " )
621
620
options .detect_versions .sycl = "sycl" in enabled_components
622
621
options .detect_versions .compute_runtime = (
623
622
"compute_runtime" in enabled_components
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ def get_compute_runtime_ver(self) -> str:
153
153
Returns the compute-runtime version by deriving from l0 version.
154
154
"""
155
155
if self .compute_runtime_ver_cache is not None :
156
+ print (f"Using cached compute-runtime tag { self .compute_runtime_ver_cache } ..." )
156
157
return self .compute_runtime_ver_cache
157
158
158
159
patch = _get_patch_from_ver (self .l0_ver )
You can’t perform that action at this time.
0 commit comments