1234567891011121314151617181920212223242526272829 |
- From 9a5a9479d9cdf2032ff989fd297e50490f53e4c2 Mon Sep 17 00:00:00 2001
- From: Jesse Gross <jesse@ollama.com>
- Date: Mon, 30 Sep 2024 16:31:04 -0700
- Subject: [PATCH 07/11] blas
- ---
- ggml/src/ggml-blas/ggml-blas.cpp | 4 ++++
- 1 file changed, 4 insertions(+)
- diff --git a/ggml/src/ggml-blas/ggml-blas.cpp b/ggml/src/ggml-blas/ggml-blas.cpp
- index ec158dfa..b3ac1fa4 100644
- --- a/ggml/src/ggml-blas/ggml-blas.cpp
- +++ b/ggml/src/ggml-blas/ggml-blas.cpp
- @@ -1,3 +1,5 @@
- +#ifdef GGML_USE_BLAS
- +
- #include "ggml-impl.h"
- #include "ggml-blas.h"
- #include "ggml-backend-impl.h"
- @@ -515,3 +517,5 @@ ggml_backend_reg_t ggml_backend_blas_reg(void) {
- }
-
- GGML_BACKEND_DL_IMPL(ggml_backend_blas_reg)
- +
- +#endif // GGML_USE_BLAS
- \ No newline at end of file
- --
- 2.46.0
|