myy97's picture
Upload folder using huggingface_hub
140387c
raw
history blame contribute delete
193 Bytes
NVCC = nvcc
.PHONY: libllama2
libllama2: llama2.cu
$(NVCC) -DUSE_CUDA --shared -O3 -lcublas -lm -o libllama2.so llama2.cu --compiler-options '-fPIC'
.PHONY: clean
clean:
rm -f libllama2.so