Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion devops/scripts/benchmarks/benches/benchdnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ def git_url(self):
return "https://github.com/uxlfoundation/oneDNN.git"

def git_tag(self):
return "v3.8"
# 16 Oct, 2025
return "v3.9.2"

def name(self):
return "BenchDNN"
Expand Down
4 changes: 2 additions & 2 deletions devops/scripts/benchmarks/benches/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def git_url(self) -> str:
return "https://github.com/intel/compute-benchmarks.git"

def git_hash(self) -> str:
# Oct 9, 2025
return "32805b4b6f8dafb4a97f21c4c85bb2f6963f8dbb"
# Oct 21, 2025
return "ad21e3cb936d495a7b0ffcdf757a47ce03610ef9"

def setup(self) -> None:
if options.sycl is None:
Expand Down
3 changes: 2 additions & 1 deletion devops/scripts/benchmarks/benches/gromacs.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def git_url(self):
return "https://gitlab.com/gromacs/gromacs.git"

def git_tag(self):
return "v2025.2"
# 29 Aug, 2025
return "v2025.3"

def grappa_url(self):
return "https://zenodo.org/record/11234002/files/grappa-1.5k-6.1M_rc0.9.tar.gz"
Expand Down
3 changes: 2 additions & 1 deletion devops/scripts/benchmarks/benches/llamacpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def git_url(self) -> str:
return "https://github.com/ggerganov/llama.cpp"

def git_hash(self) -> str:
return "916c83bfe7f8b08ada609c3b8e583cf5301e594b"
# 24 Oct, 2025
return "5a91109a5d7dab5d7adc40bedb397ede99a705b1"

def setup(self) -> None:
if options.sycl is None:
Expand Down
1 change: 1 addition & 0 deletions devops/scripts/benchmarks/benches/syclbench.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def git_url(self) -> str:
return "https://github.com/unisa-hpc/sycl-bench.git"

def git_hash(self) -> str:
# 21 Feb, 2025
return "31fc70be6266193c4ba60eb1fe3ce26edee4ca5b"

def setup(self) -> None:
Expand Down
3 changes: 2 additions & 1 deletion devops/scripts/benchmarks/benches/velocity.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def git_url(self) -> str:
return "https://github.com/oneapi-src/Velocity-Bench/"

def git_hash(self) -> str:
return "b22215c16f789100449c34bf4eaa3fb178983d69"
# 8 May, 2025
return "2b1479123ea3300062921228b99192eb3747904f"

def setup(self) -> None:
if options.sycl is None:
Expand Down
Loading