2023-04-20 03:14:14 +02:00
# Define the default target now so that it is always the first target
2023-08-30 12:52:46 +03:00
BUILD_TARGETS = main quantize quantize-stats perplexity embedding vdot train-text-from-scratch convert-llama2c-to-ggml simple save-load-state server embd-input-test gguf llama-bench baby-llama beam-search tests/test-c.o
2023-05-27 11:04:14 -06:00
2023-07-21 12:09:16 +02:00
# Binaries only useful for tests
2023-08-28 18:38:35 +03:00
TEST_TARGETS = tests/test-llama-grammar tests/test-grammar-parser tests/test-double-float tests/test-grad0 tests/test-opt tests/test-quantize-fns tests/test-quantize-perf tests/test-sampling tests/test-tokenizer-0-llama tests/test-tokenizer-0-falcon tests/test-tokenizer-1
2023-07-21 12:09:16 +02:00
2023-09-03 11:48:49 +03:00
# Code coverage output files
COV_TARGETS = *.gcno tests/*.gcno *.gcda tests/*.gcda *.gcov tests/*.gcov lcov-report gcovr-report
2023-05-27 11:04:14 -06:00
default : $( BUILD_TARGETS )
2023-04-20 03:14:14 +02:00
2023-08-30 12:42:51 +03:00
test :
@echo "Running tests..."
@for test_target in $( TEST_TARGETS) ; do \
if [ " $$ test_target" = "tests/test-tokenizer-0-llama" ] ; then \
./$$ test_target $( CURDIR) /models/ggml-vocab-llama.gguf; \
elif [ " $$ test_target" = "tests/test-tokenizer-0-falcon" ] ; then \
continue ; \
elif [ " $$ test_target" = "tests/test-tokenizer-1" ] ; then \
continue ; \
else \
./$$ test_target; \
fi ; \
done
@echo "All tests have been run."
all : $( BUILD_TARGETS ) $( TEST_TARGETS )
2023-09-03 11:48:49 +03:00
coverage : ## Run code coverage
gcov -pb tests/*.cpp
lcov-report : coverage ## Generate lcov report
mkdir -p lcov-report
lcov --capture --directory . --output-file lcov-report/coverage.info
genhtml lcov-report/coverage.info --output-directory lcov-report
gcovr-report : coverage ## Generate gcovr report
mkdir -p gcovr-report
gcovr --root . --html --html-details --output gcovr-report/coverage.html
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
2023-09-01 18:27:40 +05:00
ifdef RISCV_CROSS_COMPILE
CC := riscv64-unknown-linux-gnu-gcc
CXX := riscv64-unknown-linux-gnu-g++
endif
2023-03-10 20:40:58 +02:00
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-06-05 22:56:18 +03:00
# -Ofast tends to produce faster code, but may not be available for some compilers.
2023-06-26 19:43:07 +03:00
ifdef LLAMA_FAST
OPT = -Ofast
else
2023-06-05 22:56:18 +03:00
OPT = -O3
2023-06-26 19:43:07 +03:00
endif
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS = -I. -Icommon
MK_CFLAGS = $( CPPFLAGS) $( OPT) -std= c11 -fPIC
MK_CXXFLAGS = $( CPPFLAGS) $( OPT) -std= c++11 -fPIC
MK_LDFLAGS =
2023-03-10 20:40:58 +02:00
2023-05-28 21:01:02 +02:00
ifdef LLAMA_DEBUG
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -O0 -g
MK_CXXFLAGS += -O0 -g
MK_LDFLAGS += -g
2023-05-28 21:01:02 +02:00
else
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DNDEBUG
2023-04-29 18:43:28 +03:00
endif
2023-07-04 15:38:04 +03:00
ifdef LLAMA_SERVER_VERBOSE
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DSERVER_VERBOSE= $( LLAMA_SERVER_VERBOSE)
2023-07-04 15:38:04 +03:00
endif
2023-09-03 11:48:49 +03:00
ifdef LLAMA_CODE_COVERAGE
CXXFLAGS += -fprofile-arcs -ftest-coverage -dumpbase ''
endif
2023-09-01 11:07:06 +02:00
ifdef LLAMA_DISABLE_LOGS
CFLAGS += -DLOG_DISABLE_LOGS
CXXFLAGS += -DLOG_DISABLE_LOGS
endif # LLAMA_DISABLE_LOGS
2023-03-28 16:48:20 +00:00
# warnings
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wdouble-promotion -Wshadow -Wstrict-prototypes -Wpointer-arith \
-Wmissing-prototypes -Werror= implicit-int -Wno-unused-function
MK_CXXFLAGS += -Wall -Wextra -Wpedantic -Wcast-qual -Wno-unused-function -Wno-multichar
2023-03-28 16:48:20 +00:00
2023-09-01 09:34:50 -04:00
ifeq '' '$(findstring clang++,$(CXX))'
# g++ only
CXXFLAGS += -Wno-format-truncation
endif
2023-03-10 20:40:58 +02:00
# OS specific
# TODO: support Windows
2023-09-03 01:26:59 -04:00
ifneq '' '$(filter $(UNAME_S),Linux Darwin FreeBSD NetBSD OpenBSD Haiku)'
MK_CFLAGS += -pthread
MK_CXXFLAGS += -pthread
2023-03-10 20:40:58 +02:00
endif
2023-07-21 09:42:21 +02:00
# detect Windows
ifneq ( $( findstring _NT ,$( UNAME_S )) ,)
_WIN32 := 1
endif
# library name prefix
ifneq ( $( _WIN 32) ,1)
LIB_PRE := lib
endif
# Dynamic Shared Object extension
ifneq ( $( _WIN 32) ,1)
DSO_EXT := .so
else
DSO_EXT := .dll
endif
# Windows Sockets 2 (Winsock) for network-capable apps
ifeq ( $( _WIN 32) ,1)
LWINSOCK2 := -lws2_32
endif
2023-05-13 17:25:09 +03:00
ifdef LLAMA_GPROF
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -pg
MK_CXXFLAGS += -pg
2023-05-13 17:25:09 +03:00
endif
ifdef LLAMA_PERF
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_PERF
2023-05-13 17:25:09 +03:00
endif
2023-03-10 20:40:58 +02:00
# 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
2023-09-01 18:27:40 +05:00
ifndef RISCV
2023-07-21 06:53:27 -04:00
ifeq ( $( UNAME_M ) , $( filter $( UNAME_M ) ,x 86_ 64 i 686 amd 64) )
2023-04-02 09:17:05 +02:00
# Use all CPU extensions that are available:
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -march= native -mtune= native
MK_CXXFLAGS += -march= native -mtune= native
2023-04-22 11:08:12 +03:00
# Usage AVX-only
2023-09-03 01:26:59 -04:00
#MK_CFLAGS += -mfma -mf16c -mavx
#MK_CXXFLAGS += -mfma -mf16c -mavx
2023-06-10 14:41:59 +08:00
# Usage SSSE3-only (Not is SSE3!)
2023-09-03 01:26:59 -04:00
#MK_CFLAGS += -mssse3
#MK_CXXFLAGS += -mssse3
2023-03-10 20:40:58 +02:00
endif
2023-06-04 23:34:30 +03:00
2023-09-01 09:53:14 -04:00
# The stack is only 16-byte aligned on Windows, so don't let gcc emit aligned moves.
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54412
# https://github.com/ggerganov/llama.cpp/issues/2922
ifneq '' '$(findstring mingw,$(shell $(CC) -dumpmachine))'
CFLAGS += -Xassembler -muse-unaligned-vector-move
CXXFLAGS += -Xassembler -muse-unaligned-vector-move
endif
2023-08-06 23:21:46 -07:00
ifneq ( $( filter aarch 64%,$( UNAME_M )) ,)
# Apple M1, M2, etc.
# Raspberry Pi 3, 4, Zero 2 (64-bit)
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -mcpu= native
MK_CXXFLAGS += -mcpu= native
2023-08-06 23:21:46 -07:00
endif
ifneq ( $( filter armv 6%,$( UNAME_M )) ,)
# Raspberry Pi 1, Zero
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -mfpu= neon-fp-armv8 -mfp16-format= ieee -mno-unaligned-access
MK_CXXFLAGS += -mfpu= neon-fp-armv8 -mfp16-format= ieee -mno-unaligned-access
2023-08-06 23:21:46 -07:00
endif
ifneq ( $( filter armv 7%,$( UNAME_M )) ,)
# Raspberry Pi 2
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -mfpu= neon-fp-armv8 -mfp16-format= ieee -mno-unaligned-access -funsafe-math-optimizations
MK_CXXFLAGS += -mfpu= neon-fp-armv8 -mfp16-format= ieee -mno-unaligned-access -funsafe-math-optimizations
2023-08-06 23:21:46 -07:00
endif
ifneq ( $( filter armv 8%,$( UNAME_M )) ,)
# Raspberry Pi 3, 4, Zero 2 (32-bit)
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -mfp16-format= ieee -mno-unaligned-access
MK_CXXFLAGS += -mfp16-format= ieee -mno-unaligned-access
2023-08-06 23:21:46 -07:00
endif
2023-03-10 20:40:58 +02:00
ifneq ( $( filter ppc 64%,$( UNAME_M )) ,)
POWER9_M := $( shell grep "POWER9" /proc/cpuinfo)
ifneq ( ,$( findstring POWER9,$( POWER9_M)) )
2023-09-03 01:26:59 -04:00
MK_CFLAGS += -mcpu= power9
MK_CXXFLAGS += -mcpu= power9
2023-03-10 20:40:58 +02:00
endif
endif
2023-06-04 23:34:30 +03:00
2023-09-01 18:27:40 +05:00
else
CFLAGS += -march= rv64gcv -mabi= lp64d
CXXFLAGS += -march= rv64gcv -mabi= lp64d
endif
2023-06-07 10:59:52 +03:00
ifndef LLAMA_NO_K_QUANTS
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_K_QUANTS
2023-06-07 10:59:52 +03:00
OBJS += k_quants.o
2023-06-26 19:43:07 +03:00
ifdef LLAMA_QKK_64
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_QKK_64
2023-06-26 19:43:07 +03:00
endif
2023-06-07 10:59:52 +03:00
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)
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_ACCELERATE
MK_LDFLAGS += -framework Accelerate
2023-03-10 20:40:58 +02:00
endif
2023-06-04 23:34:30 +03:00
endif # LLAMA_NO_ACCELERATE
2023-07-10 11:49:56 -04:00
ifdef LLAMA_MPI
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_MPI
MK_CFLAGS += -Wno-cast-qual
MK_CXXFLAGS += -Wno-cast-qual
2023-07-10 11:49:56 -04:00
OBJS += ggml-mpi.o
endif # LLAMA_MPI
2023-03-11 12:26:16 +02:00
ifdef LLAMA_OPENBLAS
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_OPENBLAS $( shell pkg-config --cflags-only-I openblas)
MK_CFLAGS += $( shell pkg-config --cflags-only-other openblas)
MK_LDFLAGS += $( shell pkg-config --libs openblas)
2023-06-04 23:34:30 +03:00
endif # LLAMA_OPENBLAS
2023-05-20 23:58:31 +09:00
ifdef LLAMA_BLIS
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_OPENBLAS -I/usr/local/include/blis -I/usr/include/blis
MK_LDFLAGS += -lblis -L/usr/local/lib
2023-06-04 23:34:30 +03:00
endif # LLAMA_BLIS
2023-04-19 11:22:45 +02:00
ifdef LLAMA_CUBLAS
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_CUBLAS -I/usr/local/cuda/include -I/opt/cuda/include -I$( CUDA_PATH) /targets/x86_64-linux/include
MK_LDFLAGS += -lcublas -lculibos -lcudart -lcublasLt -lpthread -ldl -lrt -L/usr/local/cuda/lib64 -L/opt/cuda/lib64 -L$( CUDA_PATH) /targets/x86_64-linux/lib
2023-04-21 21:59:17 +02:00
OBJS += ggml-cuda.o
2023-07-29 23:04:44 +02:00
NVCCFLAGS = --forward-unknown-to-host-compiler -use_fast_math
2023-07-21 18:38:57 +08:00
ifdef LLAMA_CUDA_NVCC
NVCC = $( LLAMA_CUDA_NVCC)
else
NVCC = nvcc
endif #LLAMA_CUDA_NVCC
2023-07-07 11:25:25 -07:00
ifdef CUDA_DOCKER_ARCH
NVCCFLAGS += -Wno-deprecated-gpu-targets -arch= $( CUDA_DOCKER_ARCH)
else
NVCCFLAGS += -arch= native
endif # CUDA_DOCKER_ARCH
2023-07-05 14:19:42 +02:00
ifdef LLAMA_CUDA_FORCE_DMMV
NVCCFLAGS += -DGGML_CUDA_FORCE_DMMV
endif # LLAMA_CUDA_FORCE_DMMV
2023-05-25 23:07:29 +02:00
ifdef LLAMA_CUDA_DMMV_X
NVCCFLAGS += -DGGML_CUDA_DMMV_X= $( LLAMA_CUDA_DMMV_X)
else
NVCCFLAGS += -DGGML_CUDA_DMMV_X= 32
endif # LLAMA_CUDA_DMMV_X
2023-07-05 14:19:42 +02:00
ifdef LLAMA_CUDA_MMV_Y
NVCCFLAGS += -DGGML_CUDA_MMV_Y= $( LLAMA_CUDA_MMV_Y)
else ifdef LLAMA_CUDA_DMMV_Y
NVCCFLAGS += -DGGML_CUDA_MMV_Y= $( LLAMA_CUDA_DMMV_Y) # for backwards compatibility
2023-05-25 23:07:29 +02:00
else
2023-07-05 14:19:42 +02:00
NVCCFLAGS += -DGGML_CUDA_MMV_Y= 1
endif # LLAMA_CUDA_MMV_Y
2023-07-29 23:04:44 +02:00
ifdef LLAMA_CUDA_F16
NVCCFLAGS += -DGGML_CUDA_F16
endif # LLAMA_CUDA_F16
2023-06-19 10:23:56 +02:00
ifdef LLAMA_CUDA_DMMV_F16
2023-07-29 23:04:44 +02:00
NVCCFLAGS += -DGGML_CUDA_F16
2023-06-19 10:23:56 +02:00
endif # LLAMA_CUDA_DMMV_F16
2023-06-16 20:08:44 +03:00
ifdef LLAMA_CUDA_KQUANTS_ITER
NVCCFLAGS += -DK_QUANTS_PER_ITERATION= $( LLAMA_CUDA_KQUANTS_ITER)
else
NVCCFLAGS += -DK_QUANTS_PER_ITERATION= 2
endif
2023-07-31 15:44:35 +02:00
#ifdef LLAMA_CUDA_CUBLAS
# NVCCFLAGS += -DGGML_CUDA_CUBLAS
#endif # LLAMA_CUDA_CUBLAS
2023-07-21 18:38:57 +08:00
ifdef LLAMA_CUDA_CCBIN
2023-07-21 13:50:55 +03:00
NVCCFLAGS += -ccbin $( LLAMA_CUDA_CCBIN)
2023-07-21 18:38:57 +08:00
endif
2023-04-20 03:14:14 +02:00
ggml-cuda.o : ggml -cuda .cu ggml -cuda .h
2023-07-31 21:02:19 +02:00
$( NVCC) $( NVCCFLAGS) $( subst -Ofast,-O3,$( CXXFLAGS)) -Wno-pedantic -c $< -o $@
2023-05-25 23:07:29 +02:00
endif # LLAMA_CUBLAS
2023-06-04 23:34:30 +03:00
2023-04-28 16:57:16 +02:00
ifdef LLAMA_CLBLAST
2023-07-23 07:52:08 -04:00
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_CLBLAST $( shell pkg-config --cflags-only-I clblast OpenCL)
MK_CFLAGS += $( shell pkg-config --cflags-only-other clblast OpenCL)
MK_CXXFLAGS += $( shell pkg-config --cflags-only-other clblast OpenCL)
2023-07-23 07:52:08 -04:00
2023-05-05 08:18:21 -04:00
# Mac provides OpenCL as a framework
ifeq ( $( UNAME_S) ,Darwin)
2023-09-03 01:26:59 -04:00
MK_LDFLAGS += -lclblast -framework OpenCL
2023-05-05 08:18:21 -04:00
else
2023-09-03 01:26:59 -04:00
MK_LDFLAGS += $( shell pkg-config --libs clblast OpenCL)
2023-05-05 08:18:21 -04:00
endif
2023-04-28 16:57:16 +02:00
OBJS += ggml-opencl.o
2023-06-04 23:34:30 +03:00
2023-05-22 23:33:24 +02:00
ggml-opencl.o : ggml -opencl .cpp ggml -opencl .h
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-06-04 23:34:30 +03:00
endif # LLAMA_CLBLAST
2023-08-25 12:09:42 +03:00
ifdef LLAMA_HIPBLAS
ROCM_PATH ?= /opt/rocm
HIPCC ?= $( ROCM_PATH) /bin/hipcc
GPU_TARGETS ?= $( shell $( ROCM_PATH) /llvm/bin/amdgpu-arch)
LLAMA_CUDA_DMMV_X ?= 32
LLAMA_CUDA_MMV_Y ?= 1
LLAMA_CUDA_KQUANTS_ITER ?= 2
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_HIPBLAS -DGGML_USE_CUBLAS
MK_LDFLAGS += -L$( ROCM_PATH) /lib -Wl,-rpath= $( ROCM_PATH) /lib
MK_LDFLAGS += -lhipblas -lamdhip64 -lrocblas
2023-08-25 12:09:42 +03:00
HIPFLAGS += $( addprefix --offload-arch= ,$( GPU_TARGETS))
HIPFLAGS += -DGGML_CUDA_DMMV_X= $( LLAMA_CUDA_DMMV_X)
HIPFLAGS += -DGGML_CUDA_MMV_Y= $( LLAMA_CUDA_MMV_Y)
HIPFLAGS += -DK_QUANTS_PER_ITERATION= $( LLAMA_CUDA_KQUANTS_ITER)
HIPFLAGS += -DCC_TURING= 1000000000
ifdef LLAMA_CUDA_FORCE_DMMV
HIPFLAGS += -DGGML_CUDA_FORCE_DMMV
endif # LLAMA_CUDA_FORCE_DMMV
OBJS += ggml-cuda.o
ggml-cuda.o : ggml -cuda .cu ggml -cuda .h
$( HIPCC) $( CXXFLAGS) $( HIPFLAGS) -x hip -c -o $@ $<
endif # LLAMA_HIPBLAS
2023-06-04 23:34:30 +03:00
ifdef LLAMA_METAL
2023-09-03 01:26:59 -04:00
MK_CPPFLAGS += -DGGML_USE_METAL #-DGGML_METAL_NDEBUG
MK_LDFLAGS += -framework Foundation -framework Metal -framework MetalKit
OBJS += ggml-metal.o
2023-06-04 23:34:30 +03:00
endif # LLAMA_METAL
2023-07-14 11:34:40 -06:00
ifdef LLAMA_METAL
ggml-metal.o : ggml -metal .m ggml -metal .h
$( CC) $( CFLAGS) -c $< -o $@
endif # LLAMA_METAL
ifdef LLAMA_MPI
ggml-mpi.o : ggml -mpi .c ggml -mpi .h
$( CC) $( CFLAGS) -c $< -o $@
endif # LLAMA_MPI
2023-09-03 01:26:59 -04:00
ifndef LLAMA_NO_K_QUANTS
2023-06-07 10:59:52 +03:00
k_quants.o : k_quants .c k_quants .h
$( CC) $( CFLAGS) -c $< -o $@
endif # LLAMA_NO_K_QUANTS
2023-09-03 01:26:59 -04:00
# combine build flags with cmdline overrides
override CPPFLAGS : = $( MK_CPPFLAGS ) $( CPPFLAGS )
override CFLAGS : = $( MK_CFLAGS ) $( CFLAGS )
override CXXFLAGS : = $( MK_CXXFLAGS ) $( CXXFLAGS )
override LDFLAGS : = $( MK_LDFLAGS ) $( LDFLAGS )
2023-03-10 20:40:58 +02:00
#
# 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
#
2023-06-07 10:59:52 +03:00
ggml.o : ggml .c ggml .h ggml -cuda .h
2023-04-14 19:39:48 +00:00
$( CC) $( CFLAGS) -c $< -o $@
2023-03-10 20:40:58 +02:00
2023-07-30 15:58:01 +02:00
ggml-alloc.o : ggml -alloc .c ggml .h ggml -alloc .h
$( CC) $( CFLAGS) -c $< -o $@
OBJS += ggml-alloc.o
2023-08-21 23:07:43 +03:00
llama.o : llama .cpp ggml .h ggml -alloc .h ggml -cuda .h ggml -metal .h llama .h
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-03-22 07:32:36 +02:00
2023-08-30 08:29:32 +02:00
common.o : common /common .cpp common /common .h build -info .h common /log .h
2023-04-14 19:39:48 +00:00
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-03-10 20:40:58 +02:00
2023-08-21 23:07:43 +03:00
console.o : common /console .cpp common /console .h
2023-08-04 08:20:12 -07:00
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-08-21 23:07:43 +03:00
grammar-parser.o : common /grammar -parser .cpp common /grammar -parser .h
2023-07-23 23:58:10 -04:00
$( CXX) $( CXXFLAGS) -c $< -o $@
2023-06-07 10:59:52 +03:00
libllama.so : llama .o ggml .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) -shared -fPIC -o $@ $^ $( LDFLAGS)
2023-03-10 20:40:58 +02:00
2023-05-01 09:23:47 -07:00
clean :
2023-09-03 11:48:49 +03:00
rm -vrf *.o tests/*.o *.so *.dll benchmark-matmult build-info.h *.dot $( COV_TARGETS) $( BUILD_TARGETS) $( TEST_TARGETS)
2023-05-01 09:23:47 -07:00
#
# Examples
#
2023-08-04 08:20:12 -07:00
main : examples /main /main .cpp build -info .h ggml .o llama .o common .o console .o grammar -parser .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -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-06-16 20:58:09 +02:00
simple : examples /simple /simple .cpp build -info .h ggml .o llama .o common .o $( OBJS )
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-06-07 10:59:52 +03:00
quantize : examples /quantize /quantize .cpp build -info .h ggml .o llama .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-03-25 20:26:40 +02:00
2023-06-07 10:59:52 +03:00
quantize-stats : examples /quantize -stats /quantize -stats .cpp build -info .h ggml .o llama .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-04-08 00:09:18 +02:00
2023-06-07 10:59:52 +03:00
perplexity : examples /perplexity /perplexity .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-03-10 20:40:58 +02:00
2023-06-07 10:59:52 +03:00
embedding : examples /embedding /embedding .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-03-28 08:11:09 +02:00
2023-06-07 10:59:52 +03:00
save-load-state : examples /save -load -state /save -load -state .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-04-18 21:00:14 +02:00
2023-08-08 15:29:19 +02:00
server : examples /server /server .cpp examples /server /httplib .h examples /server /json .hpp examples /server /index .html .hpp examples /server /index .js .hpp examples /server /completion .js .hpp build -info .h ggml .o llama .o common .o grammar -parser .o $( OBJS )
2023-07-21 09:42:21 +02:00
$( CXX) $( CXXFLAGS) -Iexamples/server $( filter-out %.h,$( filter-out %.hpp,$^)) -o $@ $( LDFLAGS) $( LWINSOCK2)
2023-05-27 11:04:14 -06:00
2023-07-21 09:42:21 +02:00
$(LIB_PRE)embdinput$(DSO_EXT) : examples /embd -input /embd -input .h examples /embd -input /embd -input -lib .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-06-28 23:53:37 +08:00
$( CXX) --shared $( CXXFLAGS) $( filter-out %.h,$( filter-out %.hpp,$^)) -o $@ $( LDFLAGS)
2023-07-21 09:42:21 +02:00
embd-input-test : $( LIB_PRE ) embdinput $( DSO_EXT ) examples /embd -input /embd -input -test .cpp build -info .h ggml .o llama .o common .o $( OBJS )
$( CXX) $( CXXFLAGS) $( filter-out %$( DSO_EXT) ,$( filter-out %.h,$( filter-out %.hpp,$^))) -o $@ $( LDFLAGS) -L. -lembdinput
2023-06-28 23:53:37 +08:00
2023-08-29 04:42:41 -04:00
gguf : examples /gguf /gguf .cpp ggml .o llama .o $( OBJS )
2023-08-21 23:07:43 +03:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-29 04:42:41 -04:00
train-text-from-scratch : examples /train -text -from -scratch /train -text -from -scratch .cpp ggml .o llama .o common .o $( OBJS )
2023-06-15 19:42:48 +02:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-29 04:42:41 -04:00
convert-llama2c-to-ggml : examples /convert -llama 2c -to -ggml /convert -llama 2c -to -ggml .cpp ggml .o llama .o $( OBJS )
2023-08-11 19:17:25 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-18 12:44:58 +02:00
llama-bench : examples /llama -bench /llama -bench .cpp build -info .h ggml .o llama .o common .o $( OBJS )
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-29 04:42:41 -04:00
baby-llama : examples /baby -llama /baby -llama .cpp ggml .o llama .o common .o $( OBJS )
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-30 12:52:46 +03:00
beam-search : examples /beam -search /beam -search .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
ifneq '' '$(or $(filter clean,$(MAKECMDGOALS)),$(LLAMA_METAL))'
BUILD_TARGETS += metal
endif
ifdef LLAMA_METAL
metal : examples /metal /metal .cpp ggml .o $( OBJS )
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
endif
2023-05-01 09:23:47 -07:00
build-info.h : $( wildcard .git /index ) scripts /build -info .sh
2023-05-02 17:52:35 -07:00
@sh scripts/build-info.sh > $@ .tmp
2023-05-01 09:23:47 -07:00
@if ! cmp -s $@ .tmp $@ ; then \
mv $@ .tmp $@ ; \
else \
rm $@ .tmp; \
fi
2023-04-13 09:03:57 -05:00
2023-03-10 20:40:58 +02:00
#
# Tests
#
2023-07-21 12:09:16 +02:00
tests : $( TEST_TARGETS )
2023-06-07 10:59:52 +03:00
benchmark-matmult : examples /benchmark /benchmark -matmult .cpp build -info .h ggml .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-04-30 12:32:37 +00:00
./$@
2023-04-13 09:03:57 -05:00
2023-06-07 10:59:52 +03:00
vdot : pocs /vdot /vdot .cpp ggml .o $( OBJS )
2023-05-01 09:23:47 -07:00
$( CXX) $( CXXFLAGS) $^ -o $@ $( LDFLAGS)
2023-08-28 18:38:35 +03:00
tests/test-llama-grammar : tests /test -llama -grammar .cpp build -info .h ggml .o common .o grammar -parser .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-17 03:41:01 -04:00
2023-08-28 18:38:35 +03:00
tests/test-grammar-parser : tests /test -grammar -parser .cpp build -info .h ggml .o llama .o common .o grammar -parser .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-13 10:00:48 -04:00
2023-08-02 04:06:19 -04:00
tests/test-double-float : tests /test -double -float .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-07-21 12:09:16 +02:00
2023-08-02 04:06:19 -04:00
tests/test-grad0 : tests /test -grad 0.cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-07-21 12:09:16 +02:00
2023-08-02 04:06:19 -04:00
tests/test-opt : tests /test -opt .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-07-21 12:09:16 +02:00
tests/test-quantize-fns : tests /test -quantize -fns .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-07-21 12:09:16 +02:00
tests/test-quantize-perf : tests /test -quantize -perf .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-07-21 12:09:16 +02:00
tests/test-sampling : tests /test -sampling .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-07-21 12:09:16 +02:00
2023-08-28 18:38:35 +03:00
tests/test-tokenizer-0-falcon : tests /test -tokenizer -0-falcon .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-28 18:38:35 +03:00
tests/test-tokenizer-0-llama : tests /test -tokenizer -0-llama .cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-28 18:38:35 +03:00
tests/test-tokenizer-1 : tests /test -tokenizer -1.cpp build -info .h ggml .o llama .o common .o $( OBJS )
2023-08-29 04:42:41 -04:00
$( CXX) $( CXXFLAGS) $( filter-out %.h,$^) -o $@ $( LDFLAGS)
2023-08-30 02:20:26 -04:00
tests/test-c.o : tests /test -c .c llama .h
$( CC) $( CFLAGS) -c $( filter-out %.h,$^) -o $@