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 c4fe84f commit e4cf982Copy full SHA for e4cf982
Makefile
@@ -109,9 +109,9 @@ ifdef LLAMA_CUBLAS
109
LDFLAGS += -lcublas -lculibos -lcudart -lcublasLt -lpthread -ldl -lrt -L/usr/local/cuda/lib64
110
OBJS += ggml-cuda.o
111
NVCC = nvcc
112
- NVCCFLAGS = --forward-unknown-to-host-linker -arch=native
+ NVCCFLAGS = --forward-unknown-to-host-compiler -arch=native
113
ggml-cuda.o: ggml-cuda.cu ggml-cuda.h
114
- $(NVCC) $(NVCCFLAGS) $(CXXFLAGS) -c $< -o $@
+ $(NVCC) $(NVCCFLAGS) $(CXXFLAGS) -Wno-pedantic -c $< -o $@
115
endif
116
ifdef LLAMA_GPROF
117
CFLAGS += -pg
0 commit comments