From: Mathieu Baudier Date: Fri, 10 Oct 2025 13:47:05 +0000 (+0200) Subject: Drop OpenBLAS backend X-Git-Tag: debian/0.9.4.185-1~9 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=e89b9870239572eadb93163e8aa27554f71d34a1;p=pkg%2Fggml%2Fsources%2Fggml Drop OpenBLAS backend --- diff --git a/debian/changelog b/debian/changelog index fc487d55..037d2311 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,13 @@ +ggml (0.9.4-1) unstable; urgency=medium + + * Upstream release + * Drop OpenBLAS support + + -- Mathieu Baudier Fri, 10 Oct 2025 13:40:50 +0000 + ggml (0.9.1-1) unstable; urgency=medium * Upstream release -- Mathieu Baudier Mon, 22 Sep 2025 11:44:18 +0000 + \ No newline at end of file diff --git a/debian/control b/debian/control index ccf5d924..ae272adb 100644 --- a/debian/control +++ b/debian/control @@ -8,8 +8,6 @@ Vcs-Git: https://git.djapps.eu/pkg/ggml/sources/ggml Homepage: https://github.com/ggml-org/ggml Build-Depends: cmake, debhelper-compat (= 13), - libopenblas-openmp-dev, - libopenblas64-openmp-dev [amd64 arm64], pkgconf, libvulkan-dev [amd64] , glslc [amd64] , @@ -62,23 +60,10 @@ Description: Tensor library for machine learning (CPU backend) allowing one to run computations on older CPU while still benefiting from the capabilities of recent ones. -Package: libggml-backend-blas -Architecture: any -Multi-Arch: same -Depends: libggml-base0 (= ${binary:Version}), - libopenblas0-openmp, - libopenblas64-0-openmp [amd64 arm64], - ${misc:Depends}, - ${shlibs:Depends} -Recommends: libopenblas0 | libblis4 | libmkl-rt | libblas3 -Description: Tensor library for machine learning (OpenBLAS backend) - The ggml BLAS backend provides software acceleration of the computations - based on OpenBLAS. - Package: libggml-backend-rpc Architecture: any Multi-Arch: same -Depends: libggml-base0, +Depends: libggml-base0 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends} Description: Tensor library for machine learning (RPC backend) diff --git a/debian/libggml-backend-blas.install b/debian/libggml-backend-blas.install deleted file mode 100644 index 985f7e75..00000000 --- a/debian/libggml-backend-blas.install +++ /dev/null @@ -1 +0,0 @@ -/usr/libexec/*/ggml/libggml-blas.so diff --git a/debian/rules b/debian/rules index a543651a..f382e351 100755 --- a/debian/rules +++ b/debian/rules @@ -21,9 +21,7 @@ CMAKE_OPTS = -DGGML_NATIVE=OFF \ -DGGML_BACKEND_DL=ON \ # Common backends -CMAKE_OPTS += -DGGML_BLAS=ON \ - -DGGML_BLAS_VENDOR=OpenBLAS \ - -DGGML_RPC=ON \ +CMAKE_OPTS += -DGGML_RPC=ON \ ifeq ($(DEB_TARGET_ARCH),arm64) CMAKE_OPTS += -DGGML_CPU_ALL_VARIANTS=OFF \