We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a2645 commit 6ce9483Copy full SHA for 6ce9483
Dockerfile
@@ -303,7 +303,7 @@ RUN make prepare
303
## Build the binary
304
## If we're on arm64 AND using cublas/hipblas, skip some of the llama-compat backends to save space
305
## Otherwise just run the normal build
306
-RUN if [ "${TARGETARCH}" = "arm64" ] && ( [ "${BUILD_TYPE}" = "cublas" ] || [ "${BUILD_TYPE}" = "hipblas" ] ); then \
+RUN if [ "${TARGETARCH}" = "arm64" ] || [ "${BUILD_TYPE}" = "hipblas" ]; then \
307
SKIP_GRPC_BACKEND="backend-assets/grpc/llama-cpp-avx512 backend-assets/grpc/llama-cpp-avx backend-assets/grpc/llama-cpp-avx2" make build; \
308
else \
309
make build; \
0 commit comments