Skip to content

Commit 82047b1

Browse files
authored
Merge pull request #1999 from rhatdan/llama.cpp
Bump the versions of llama.cpp and whisper.cpp
2 parents de6c684 + c5b86de commit 82047b1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

container-images/scripts/build_llama_and_whisper.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,10 @@ dnf_install_s390_ppc64le() {
7373
dnf_install_mesa() {
7474
if [ "${ID}" = "fedora" ]; then
7575
dnf copr enable -y slp/mesa-libkrun-vulkan
76-
dnf install -y mesa-vulkan-drivers-25.0.7-101.fc42 virglrenderer \
77-
"${vulkan_rpms[@]}"
78-
dnf versionlock add mesa-vulkan-drivers-25.0.7-101.fc42
76+
dnf install -y mesa-vulkan-drivers-25.2.3-101.fc42 virglrenderer \
77+
"${vulkan_rpms[@]}"
78+
dnf versionlock add mesa-vulkan-drivers-25.2.3-101.fc42
79+
7980
elif [ "${ID}" = "openEuler" ]; then
8081
dnf install -y mesa-vulkan-drivers virglrenderer "${vulkan_rpms[@]}"
8182
else # virglrenderer not available on RHEL or EPEL
@@ -239,7 +240,7 @@ configure_common_flags() {
239240
}
240241

241242
clone_and_build_whisper_cpp() {
242-
local DEFAULT_WHISPER_COMMIT="7745fcf32846006128f16de429cfe1677c963b30"
243+
local DEFAULT_WHISPER_COMMIT="c8223a8548ad64435266e551385fc51aca9ee8ab"
243244
local whisper_cpp_commit="${WHISPER_CPP_PULL_REF:-$DEFAULT_WHISPER_COMMIT}"
244245
local whisper_flags=("${common_flags[@]}")
245246
whisper_flags+=("-DBUILD_SHARED_LIBS=OFF")
@@ -258,7 +259,7 @@ clone_and_build_whisper_cpp() {
258259
}
259260

260261
clone_and_build_llama_cpp() {
261-
local DEFAULT_LLAMA_CPP_COMMIT="b0d52998b962bd2681c34bf52af993af79f178b8"
262+
local DEFAULT_LLAMA_CPP_COMMIT="a23b9bdbd3b64ce172f9962249f432d01aea7437"
262263
local llama_cpp_commit="${LLAMA_CPP_PULL_REF:-$DEFAULT_LLAMA_CPP_COMMIT}"
263264
local install_prefix
264265
install_prefix=$(set_install_prefix)

0 commit comments

Comments
 (0)