diff options
author | slaren <2141330+slaren@users.noreply.github.com> | 2023-04-20 20:49:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-20 20:49:53 +0200 |
commit | 2005469ea130cf920c50175d4f47a87bfd8aaf4d (patch) | |
tree | 73f089b971c19eb8e1f6f5e3c38fff175048729f /Makefile | |
parent | 8a1756abdf1f48cb4dcb898bc8fbe9102ef49dc6 (diff) |
Add Q4_3 support to cuBLAS (#1086)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -102,7 +102,7 @@ ifdef LLAMA_OPENBLAS endif ifdef LLAMA_CUBLAS CFLAGS += -DGGML_USE_CUBLAS -I/usr/local/cuda/include - LDFLAGS += -lcublas_static -lculibos -lcudart_static -lcublasLt_static -lpthread -ldl -lrt -L/usr/local/cuda/lib64 + LDFLAGS += -lcublas -lculibos -lcudart -lcublasLt -lpthread -ldl -lrt -L/usr/local/cuda/lib64 OBJS += ggml-cuda.o ggml-cuda.o: ggml-cuda.cu ggml-cuda.h nvcc -arch=native -c -o $@ $< |