Skip to content

Commit 2726476

Browse files
pbalcerigchor
andauthored
[CI][Benchmark] update compute-runtime (#18024)
Co-authored-by: Igor Chorazewicz <[email protected]>
1 parent 0f9e123 commit 2726476

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

devops/scripts/benchmarks/options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Options:
4040
build_compute_runtime: bool = False
4141
extra_ld_libraries: list[str] = field(default_factory=list)
4242
extra_env_vars: dict = field(default_factory=dict)
43-
compute_runtime_tag: str = "25.09.32961.8"
43+
compute_runtime_tag: str = "25.13.33276.18"
4444
build_igc: bool = False
4545
current_run_name: str = "This PR"
4646
preset: str = "Full"

devops/scripts/benchmarks/utils/compute_runtime.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -97,38 +97,38 @@ def build_igc(self, repo, commit):
9797
options.workdir,
9898
"vc-intrinsics",
9999
"https://github.com/intel/vc-intrinsics",
100-
"b980474c99859f7e4eb157828c5e80202b062177",
100+
"9d255266e1df8f1dc5d11e1fbb03213acfaa4fc7",
101101
)
102102
self.llvm_project = git_clone(
103103
options.workdir,
104104
"llvm-project",
105105
"https://github.com/llvm/llvm-project",
106-
"llvmorg-14.0.5",
106+
"llvmorg-15.0.7",
107107
)
108108
llvm_projects = os.path.join(self.llvm_project, "llvm", "projects")
109109
self.ocl = git_clone(
110110
llvm_projects,
111111
"opencl-clang",
112112
"https://github.com/intel/opencl-clang",
113-
"ocl-open-140",
113+
"ocl-open-150",
114114
)
115115
self.translator = git_clone(
116116
llvm_projects,
117117
"llvm-spirv",
118118
"https://github.com/KhronosGroup/SPIRV-LLVM-Translator",
119-
"llvm_release_140",
119+
"llvm_release_150",
120120
)
121121
self.spirv_tools = git_clone(
122122
options.workdir,
123123
"SPIRV-Tools",
124124
"https://github.com/KhronosGroup/SPIRV-Tools.git",
125-
"173fe3c60a8d9c7d35d7842ae267bb9df267a127",
125+
"f289d047f49fb60488301ec62bafab85573668cc",
126126
)
127127
self.spirv_headers = git_clone(
128128
options.workdir,
129129
"SPIRV-Headers",
130130
"https://github.com/KhronosGroup/SPIRV-Headers.git",
131-
"2b2e05e088841c63c0b6fd4c9fb380d8688738d3",
131+
"0e710677989b4326ac974fd80c5308191ed80965",
132132
)
133133

134134
self.igc_build = os.path.join(options.workdir, "igc-build")

0 commit comments

Comments
 (0)