2023-04-20 03:14:14 +02:00
# Define the default target now so that it is always the first target
default : main quantize quantize -stats perplexity embedding vdot
2023-03-10 20:40:58 +02:00
ifndef UNAME_S
UNAME_S := $( shell uname -s)
endif
ifndef UNAME_P
UNAME_P := $( shell uname -p)
endif
ifndef UNAME_M
UNAME_M := $( shell uname -m)
endif
CCV := $( shell $( CC) --version | head -n 1)
CXXV := $( shell $( CXX) --version | head -n 1)
# Mac OS + Arm can report x86_64
# ref: https://github.com/ggerganov/whisper.cpp/issues/66#issuecomment-1282546789
ifeq ( $( UNAME_S ) ,Darwin)
ifneq ( $( UNAME_P ) ,arm)
2023-03-21 23:44:11 +08:00
SYSCTL_M := $( shell sysctl -n hw.optional.arm64 2>/dev/null)
2023-03-10 20:40:58 +02:00
ifeq ( $( SYSCTL_M) ,1)
# UNAME_P := arm
# UNAME_M := arm64
warn := $( warning Your arch is announced as x86_64, but it seems to actually be ARM64. Not fixing that can lead to bad performance. For more info see: https://github.com/ggerganov/whisper.cpp/issues/66\# issuecomment-1282546789)
endif
endif
endif
#
# Compile flags
#
2023-03-21 17:29:41 +02:00
# keep standard at C11 and C++11
2023-03-10 20:40:58 +02:00
CFLAGS = -I. -O3 -DNDEBUG -std= c11 -fPIC
2023-03-21 17:29:41 +02:00
CXXFLAGS = -I. -I./examples -O3 -DNDEBUG -std= c++11 -fPIC
2023-03-10 20:40:58 +02:00
LDFLAGS =
2023-03-28 16:48:20 +00:00
# warnings
2023-04-19 16:06:37 +00:00
CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith
2023-04-08 12:24:37 -07:00
CXXFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wno-multichar
2023-03-28 16:48:20 +00:00
2023-03-10 20:40:58 +02:00
# OS specific
# TODO: support Windows
ifeq ( $( UNAME_S ) ,Linux)
CFLAGS += -pthread
CXXFLAGS += -pthread
endif
ifeq ( $( UNAME_S ) ,Darwin)
CFLAGS += -pthread
CXXFLAGS += -pthread
endif
ifeq ( $( UNAME_S ) ,FreeBSD)
CFLAGS += -pthread
CXXFLAGS += -pthread
endif
2023-03-13 17:40:54 +01:00
ifeq ( $( UNAME_S ) ,NetBSD)
CFLAGS += -pthread
CXXFLAGS += -pthread
endif
2023-03-21 09:50:09 -06:00
ifeq ( $( UNAME_S ) ,OpenBSD)
CFLAGS += -pthread
CXXFLAGS += -pthread
endif
2023-03-10 20:40:58 +02:00
ifeq ( $( UNAME_S ) ,Haiku)
CFLAGS += -pthread
CXXFLAGS += -pthread
endif
# Architecture specific
# 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
ifeq ( $( UNAME_M ) , $( filter $( UNAME_M ) ,x 86_ 64 i 686) )
2023-04-02 09:17:05 +02:00
# Use all CPU extensions that are available:
2023-04-22 11:08:12 +03:00
CFLAGS += -march= native -mtune= native
2023-04-05 17:38:37 +03:00
CXXFLAGS += -march= native -mtune= native
2023-04-22 11:08:12 +03:00
# Usage AVX-only
#CFLAGS += -mfma -mf16c -mavx
#CXXFLAGS += -mfma -mf16c -mavx
2023-03-10 20:40:58 +02:00
endif
ifneq ( $( filter ppc 64%,$( UNAME_M )) ,)
POWER9_M := $( shell grep "POWER9" /proc/cpuinfo)
ifneq ( ,$( findstring POWER9,$( POWER9_M)) )
2023-04-22 11:08:12 +03:00
CFLAGS += -mcpu= power9
2023-03-24 08:19:26 -07:00
CXXFLAGS += -mcpu= power9
2023-03-10 20:40:58 +02:00
endif
# Require c++23's std::byteswap for big-endian support.
ifeq ( $( UNAME_M) ,ppc64)
CXXFLAGS += -std= c++23 -DGGML_BIG_ENDIAN
endif
endif
2023-03-11 12:26:16 +02:00
ifndef LLAMA_NO_ACCELERATE
2023-03-21 23:44:11 +08:00
# Mac M1 - include Accelerate framework.
# `-framework Accelerate` works on Mac Intel as well, with negliable performance boost (as of the predict time).
2023-03-10 20:40:58 +02:00
ifeq ( $( UNAME_S) ,Darwin)
CFLAGS += -DGGML_USE_ACCELERATE
LDFLAGS += -framework Accelerate
endif
endif
2023-03-11 12:26:16 +02:00
ifdef LLAMA_OPENBLAS
2023-03-10 20:40:58 +02:00
CFLAGS += -DGGML_USE_OPENBLAS -I/usr/local/include/openblas
LDFLAGS += -lopenblas
endif
2023-04-19 11:22:45 +02:00
ifdef LLAMA_CUBLAS
2023-04-28 15:40:32 +02:00
CFLAGS += -DGGML_USE_CUBLAS -I/usr/local/cuda/include -I$( CUDA_PATH) /targets/x86_64-linux/include
LDFLAGS += -lcublas -lculibos -lcudart -lcublasLt -lpthread -ldl -lrt -L/usr/local/cuda/lib64 -L$( CUDA_PATH) /targets/x86_64-linux/lib
2023-04-21 21:59:17 +02:00
OBJS += ggml-cuda.o
NVCC = nvcc
2023-04-24 17:29:58 +02:00
NVCCFLAGS = --forward-unknown-to-host-compiler -arch= native
2023-04-20 03:14:14 +02:00
ggml-cuda.o : ggml -cuda .cu ggml -cuda .h
2023-04-24 17:29:58 +02:00
$( NVCC) $( NVCCFLAGS) $( CXXFLAGS) -Wno-pedantic -c $< -o $@
2023-04-19 11:22:45 +02:00
endif
2023-03-11 12:26:16 +02:00
ifdef LLAMA_GPROF
2023-03-10 20:40:58 +02:00
CFLAGS += -pg
CXXFLAGS += -pg
endif
2023-04-23 18:15:39 +03:00
ifdef LLAMA_PERF
CFLAGS += -DGGML_PERF
CXXFLAGS += -DGGML_PERF
endif
2023-03-10 20:40:58 +02:00
ifneq ( $( filter aarch 64%,$( UNAME_M )) ,)
2023-04-22 11:08:12 +03:00
CFLAGS += -mcpu= native
2023-03-10 20:40:58 +02:00
CXXFLAGS += -mcpu= native
endif
ifneq ( $( filter armv 6%,$( UNAME_M )) ,)
# Raspberry Pi 1, 2, 3
CFLAGS += -mfpu= neon-fp-armv8 -mfp16-format= ieee -mno-unaligned-access
endif
ifneq ( $( filter armv 7%,$( UNAME_M )) ,)
# Raspberry Pi 4
CFLAGS += -mfpu= neon-fp-armv8 -mfp16-format= ieee -mno-unaligned-access -funsafe-math-optimizations
endif
ifneq ( $( filter armv 8%,$( UNAME_M )) ,)
# Raspberry Pi 4
CFLAGS += -mfp16-format= ieee -mno-unaligned-access
endif
#
# Print build information
#
$(info I llama.cpp build info : )
$(info I UNAME_S : $( UNAME_S ) )
$(info I UNAME_P : $( UNAME_P ) )
$(info I UNAME_M : $( UNAME_M ) )
$(info I CFLAGS : $( CFLAGS ) )
$(info I CXXFLAGS : $( CXXFLAGS ) )
$(info I LDFLAGS : $( LDFLAGS ) )
$(info I CC : $( CCV ) )
$(info I CXX : $( CXXV ) )
$( info )
#
# Build library
#
ggml.o : ggml .c ggml .h
2023-04-14 19:39:48 +00:00
$( CC) $( CFLAGS) -c $< -o $@
2023-03-10 20:40:58 +02:00
2023-04-14 19:39:48 +00:00
llama.o : llama .cpp ggml .h llama .h llama_util .h
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-03-22 07:32:36 +02:00
2023-03-25 20:26:40 +02:00
common.o : examples /common .cpp examples /common .h
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-03-10 20:40:58 +02:00
clean :
2023-04-13 14:46:23 +02:00
rm -vf *.o main quantize quantize-stats perplexity embedding benchmark-q4_0-matmult
2023-03-10 20:40:58 +02:00
2023-04-20 03:14:14 +02:00
main : examples /main /main .cpp ggml .o llama .o common .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-03-23 05:41:32 -06:00
@echo
@echo '==== Run ./main -h for help. ===='
@echo
2023-03-10 20:40:58 +02:00
2023-04-20 03:14:14 +02:00
quantize : examples /quantize /quantize .cpp ggml .o llama .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-03-25 20:26:40 +02:00
2023-04-20 03:14:14 +02:00
quantize-stats : examples /quantize -stats /quantize -stats .cpp ggml .o llama .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-04-08 00:09:18 +02:00
2023-04-20 03:14:14 +02:00
perplexity : examples /perplexity /perplexity .cpp ggml .o llama .o common .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-03-10 20:40:58 +02:00
2023-04-20 03:14:14 +02:00
embedding : examples /embedding /embedding .cpp ggml .o llama .o common .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-03-28 08:11:09 +02:00
2023-04-20 03:14:14 +02:00
vdot : pocs /vdot /vdot .cpp ggml .o $( OBJS )
2023-04-18 21:00:14 +02:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-04-20 03:14:14 +02:00
libllama.so : llama .o ggml .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) -shared -fPIC -o $@ $^ $( LDFLAGS)
2023-04-13 09:03:57 -05:00
2023-03-10 20:40:58 +02:00
#
# Tests
#
2023-04-20 03:14:14 +02:00
benchmark : examples /benchmark /benchmark -q 4_ 0-matmult .c ggml .o $( OBJS )
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) $^ -o benchmark-q4_0-matmult $( LDFLAGS)
2023-04-13 14:46:23 +02:00
./benchmark-q4_0-matmult
2023-04-13 09:03:57 -05:00
2023-03-10 20:40:58 +02:00
.PHONY : tests
tests :
bash ./tests/run-tests.sh