mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-27 12:33:06 +01:00
make : fix PERF build with cuBLAS
This commit is contained in:
parent
5a5aeb1e91
commit
bda4d7c215
17
Makefile
17
Makefile
@ -74,6 +74,15 @@ ifeq ($(UNAME_S),Haiku)
|
|||||||
CXXFLAGS += -pthread
|
CXXFLAGS += -pthread
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifdef LLAMA_GPROF
|
||||||
|
CFLAGS += -pg
|
||||||
|
CXXFLAGS += -pg
|
||||||
|
endif
|
||||||
|
ifdef LLAMA_PERF
|
||||||
|
CFLAGS += -DGGML_PERF
|
||||||
|
CXXFLAGS += -DGGML_PERF
|
||||||
|
endif
|
||||||
|
|
||||||
# Architecture specific
|
# Architecture specific
|
||||||
# TODO: probably these flags need to be tweaked on some architectures
|
# TODO: probably these flags need to be tweaked on some architectures
|
||||||
# feel free to update the Makefile for your architecture and send a pull request or issue
|
# feel free to update the Makefile for your architecture and send a pull request or issue
|
||||||
@ -135,14 +144,6 @@ ifdef LLAMA_CLBLAST
|
|||||||
ggml-opencl.o: ggml-opencl.c ggml-opencl.h
|
ggml-opencl.o: ggml-opencl.c ggml-opencl.h
|
||||||
$(CC) $(CFLAGS) -c $< -o $@
|
$(CC) $(CFLAGS) -c $< -o $@
|
||||||
endif
|
endif
|
||||||
ifdef LLAMA_GPROF
|
|
||||||
CFLAGS += -pg
|
|
||||||
CXXFLAGS += -pg
|
|
||||||
endif
|
|
||||||
ifdef LLAMA_PERF
|
|
||||||
CFLAGS += -DGGML_PERF
|
|
||||||
CXXFLAGS += -DGGML_PERF
|
|
||||||
endif
|
|
||||||
ifneq ($(filter aarch64%,$(UNAME_M)),)
|
ifneq ($(filter aarch64%,$(UNAME_M)),)
|
||||||
# Apple M1, M2, etc.
|
# Apple M1, M2, etc.
|
||||||
# Raspberry Pi 3, 4, Zero 2 (64-bit)
|
# Raspberry Pi 3, 4, Zero 2 (64-bit)
|
||||||
|
Loading…
Reference in New Issue
Block a user