Skip to content

Commit 0fffee9

Browse files
authored
[CI][Benchmarks] update compute runtime and fix IGC build (#17878)
Latest IGC doesn't build on the compilers on the perf testing systems due to warnings. This patch bumps up the driver to latest and also adds -Wno-error when building IGC. Nightly is broken: https://github.com/oneapi-src/unified-runtime/actions/runs/14297928864, this fixes it. Please prioritize this @intel/llvm-reviewers-benchmarking.
1 parent 6176b29 commit 0fffee9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: 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.7"
43+
compute_runtime_tag: str = "25.09.32961.8"
4444
build_igc: bool = False
4545
current_run_name: str = "This PR"
4646
preset: str = "Full"

Diff for: devops/scripts/benchmarks/utils/compute_runtime.py

+2
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,8 @@ def build_igc(self, repo, commit):
135135
self.igc_install = os.path.join(options.workdir, "igc-install")
136136
configure_command = [
137137
"cmake",
138+
"-DCMAKE_C_FLAGS=-Wno-error",
139+
"-DCMAKE_CXX_FLAGS=-Wno-error",
138140
f"-B {self.igc_build}",
139141
f"-S {self.igc_repo}",
140142
f"-DCMAKE_INSTALL_PREFIX={self.igc_install}",

0 commit comments

Comments
 (0)