-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
80 lines (65 loc) · 2.85 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Detect the operating system
OS := $(shell uname -s)
# Path variables
LLAMA_BUILD_TARGETS := llama-baby-llama llama-batched llama-batched-bench llama-bench llama-cli llama-convert-llama2c-to-ggml llama-cvector-generator llama-embedding llama-eval-callback llama-export-lora llama-finetune llama-gbnf-validator llama-gguf llama-gguf-split llama-gritlm llama-imatrix llama-infill llama-llava-cli llama-lookahead llama-lookup llama-lookup-create llama-lookup-merge llama-lookup-stats llama-parallel llama-passkey llama-perplexity llama-q8dot llama-quantize llama-quantize-stats llama-retrieval llama-save-load-state llama-server llama-simple llama-speculative llama-tokenize llama-train-text-from-scratch llama-vdot
# Directory variables
LLAMA_DIR := pkg/llm/local/gguf
ARTIFACTS_DIR := pkg/llm/local/bin
LLAMA_BUILD_DIR := $(LLAMA_DIR)/build
# Define the location of binaries based on OS and build type
LLAMA_BINARIES_DIR := $(LLAMA_DIR) # Default for macOS
ifeq ($(OS),Linux)
LLAMA_BINARIES_DIR := $(LLAMA_BUILD_DIR)/bin
endif
# Build commands
ifeq ($(OS),Darwin) # macOS
# Add llama-benchmark-matmult to the list of targets
LLAMA_BUILD_TARGETS += llama-benchmark-matmult
LLAMA_BUILD_CMD = make -C $(LLAMA_DIR)
COPY_LLAMA_CMD = cp $(addprefix $(LLAMA_DIR)/, $(LLAMA_BUILD_TARGETS)) $(ARTIFACTS_DIR)
else ifeq ($(OS),Linux)
# Add llama-bench-matmult to the list of targets
LLAMA_BUILD_TARGETS += llama-bench-matmult
LLAMA_BUILD_CMD = cmake -S $(LLAMA_DIR) -B $(LLAMA_BUILD_DIR) -DGGML_CUDA=ON -DCMAKE_CUDA_COMPILER:PATH=/usr/local/cuda/bin/nvcc && cmake --build $(LLAMA_BUILD_DIR) --config Release
FILTERED_LLAMA_BUILD_TARGETS := $(filter-out libllava.a ggml-metal.metal ggml-common.h benchmark-matmult,$(LLAMA_BUILD_TARGETS))
COPY_LLAMA_CMD = cp $(addprefix $(LLAMA_BUILD_DIR)/bin/,$(FILTERED_LLAMA_BUILD_TARGETS)) $(ARTIFACTS_DIR)
else
$(error Unsupported operating system)
endif
$(shell mkdir -p $(ARTIFACTS_DIR))
# Initialize and update git submodules
.PHONY: init-submodules
init-submodules:
git submodule update --init --recursive
# Build dependencies
.PHONY: deps
deps: init-submodules llama
# Build llama
.PHONY: llama
llama:
$(LLAMA_BUILD_CMD)
# Define a macro for copying a build target
define COPY_BUILD_TARGET
$(ARTIFACTS_DIR)/$(1): | $(ARTIFACTS_DIR)
cp $(LLAMA_DIR)/$(1) $(ARTIFACTS_DIR)/$(1)
.PHONY: $(ARTIFACTS_DIR)/$(1)
endef
# Generate the copy targets
$(foreach target,$(LLAMA_BUILD_TARGETS),$(eval $(call COPY_BUILD_TARGET,$(target))))
# Copy llama artifacts
.PHONY: copy-llama-artifacts
copy-llama-artifacts:
$(COPY_LLAMA_CMD)
# Build the eternal application
.PHONY: eternal
eternal: #copy-artifacts
go build -tags netgo -ldflags="-s -w" -trimpath -o eternal
# Default target
.PHONY: all
all: init-submodules deps llama copy-llama-artifacts eternal
# Clean up build artifacts
.PHONY: clean
clean:
rm -rf $(LLAMA_BUILD_DIR)
rm -rf $(ARTIFACTS_DIR)
rm -f eternal