2023-04-15 23:39:07 +00:00
|
|
|
GOCMD=go
|
|
|
|
GOTEST=$(GOCMD) test
|
|
|
|
GOVET=$(GOCMD) vet
|
2023-04-19 16:43:10 +00:00
|
|
|
BINARY_NAME=local-ai
|
2023-04-19 15:10:29 +00:00
|
|
|
GOLLAMA_VERSION?=llama.cpp-5ecff35
|
2023-04-20 17:49:06 +00:00
|
|
|
GOGPT4ALLJ_VERSION?=1f548782d80d48b9a0fac33aae6f129358787bc0
|
2023-04-20 22:06:55 +00:00
|
|
|
GOGPT2_VERSION?=1c24f5b86ac428cd5e81dae1f1427b1463bd2b06
|
2023-04-15 23:39:07 +00:00
|
|
|
|
|
|
|
GREEN := $(shell tput -Txterm setaf 2)
|
|
|
|
YELLOW := $(shell tput -Txterm setaf 3)
|
|
|
|
WHITE := $(shell tput -Txterm setaf 7)
|
|
|
|
CYAN := $(shell tput -Txterm setaf 6)
|
|
|
|
RESET := $(shell tput -Txterm sgr0)
|
|
|
|
|
|
|
|
.PHONY: all test build vendor
|
|
|
|
|
|
|
|
all: help
|
|
|
|
|
|
|
|
## Build:
|
|
|
|
|
|
|
|
build: prepare ## Build the project
|
2023-04-20 17:33:36 +00:00
|
|
|
C_INCLUDE_PATH=$(shell pwd)/go-llama.cpp:$(shell pwd)/go-gpt4all-j:$(shell pwd)/go-gpt2.cpp LIBRARY_PATH=$(shell pwd)/go-llama.cpp:$(shell pwd)/go-gpt4all-j:$(shell pwd)/go-gpt2.cpp $(GOCMD) build -o $(BINARY_NAME) ./
|
2023-04-19 15:10:29 +00:00
|
|
|
|
|
|
|
buildgeneric: prepare-generic ## Build the project
|
2023-04-20 17:33:36 +00:00
|
|
|
C_INCLUDE_PATH=$(shell pwd)/go-llama.cpp:$(shell pwd)/go-gpt4all-j:$(shell pwd)/go-gpt2.cpp LIBRARY_PATH=$(shell pwd)/go-llama.cpp:$(shell pwd)/go-gpt4all-j:$(shell pwd)/go-gpt2.cpp $(GOCMD) build -o $(BINARY_NAME) ./
|
2023-04-19 15:10:29 +00:00
|
|
|
|
2023-04-20 17:33:36 +00:00
|
|
|
## GPT4ALL-J
|
2023-04-19 15:10:29 +00:00
|
|
|
go-gpt4all-j:
|
2023-04-20 17:49:06 +00:00
|
|
|
git clone --recurse-submodules https://github.com/go-skynet/go-gpt4all-j.cpp go-gpt4all-j && cd go-gpt4all-j && git checkout -b build $(GOGPT4ALLJ_VERSION)
|
2023-04-19 15:10:29 +00:00
|
|
|
# This is hackish, but needed as both go-llama and go-gpt4allj have their own version of ggml..
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.c" -exec sed -i'' -e 's/ggml_/ggml_gptj_/g' {} +
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.cpp" -exec sed -i'' -e 's/ggml_/ggml_gptj_/g' {} +
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.h" -exec sed -i'' -e 's/ggml_/ggml_gptj_/g' {} +
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.cpp" -exec sed -i'' -e 's/gpt_/gptj_/g' {} +
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.h" -exec sed -i'' -e 's/gpt_/gptj_/g' {} +
|
2023-04-20 17:33:36 +00:00
|
|
|
@find ./go-gpt4all-j -type f -name "*.cpp" -exec sed -i'' -e 's/json_/json_gptj_/g' {} +
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.cpp" -exec sed -i'' -e 's/void replace/void json_gptj_replace/g' {} +
|
|
|
|
@find ./go-gpt4all-j -type f -name "*.cpp" -exec sed -i'' -e 's/::replace/::json_gptj_replace/g' {} +
|
2023-04-19 15:10:29 +00:00
|
|
|
|
|
|
|
go-gpt4all-j/libgptj.a: go-gpt4all-j
|
|
|
|
$(MAKE) -C go-gpt4all-j libgptj.a
|
|
|
|
|
|
|
|
go-gpt4all-j/libgptj.a-generic: go-gpt4all-j
|
|
|
|
$(MAKE) -C go-gpt4all-j generic-libgptj.a
|
2023-04-15 23:39:07 +00:00
|
|
|
|
2023-04-20 17:33:36 +00:00
|
|
|
# CEREBRAS GPT
|
|
|
|
go-gpt2.cpp:
|
2023-04-20 17:49:06 +00:00
|
|
|
git clone --recurse-submodules https://github.com/go-skynet/go-gpt2.cpp go-gpt2.cpp && cd go-gpt2.cpp && git checkout -b build $(GOGPT2_VERSION)
|
2023-04-20 17:33:36 +00:00
|
|
|
# This is hackish, but needed as both go-llama and go-gpt4allj have their own version of ggml..
|
|
|
|
@find ./go-gpt2.cpp -type f -name "*.c" -exec sed -i'' -e 's/ggml_/ggml_gpt2_/g' {} +
|
|
|
|
@find ./go-gpt2.cpp -type f -name "*.cpp" -exec sed -i'' -e 's/ggml_/ggml_gpt2_/g' {} +
|
|
|
|
@find ./go-gpt2.cpp -type f -name "*.h" -exec sed -i'' -e 's/ggml_/ggml_gpt2_/g' {} +
|
|
|
|
@find ./go-gpt2.cpp -type f -name "*.cpp" -exec sed -i'' -e 's/gpt_/gpt2_/g' {} +
|
|
|
|
@find ./go-gpt2.cpp -type f -name "*.h" -exec sed -i'' -e 's/gpt_/gpt2_/g' {} +
|
|
|
|
@find ./go-gpt2.cpp -type f -name "*.cpp" -exec sed -i'' -e 's/json_/json_gpt2_/g' {} +
|
|
|
|
|
|
|
|
go-gpt2.cpp/libgpt2.a: go-gpt2.cpp
|
|
|
|
$(MAKE) -C go-gpt2.cpp libgpt2.a
|
|
|
|
|
|
|
|
go-gpt2.cpp/libgpt2.a-generic: go-gpt2.cpp
|
|
|
|
$(MAKE) -C go-gpt2.cpp generic-libgpt2.a
|
|
|
|
|
2023-04-15 23:39:07 +00:00
|
|
|
go-llama:
|
|
|
|
git clone -b $(GOLLAMA_VERSION) --recurse-submodules https://github.com/go-skynet/go-llama.cpp go-llama
|
|
|
|
$(MAKE) -C go-llama libbinding.a
|
2023-04-19 15:10:29 +00:00
|
|
|
|
|
|
|
go-llama-generic:
|
|
|
|
git clone -b $(GOLLAMA_VERSION) --recurse-submodules https://github.com/go-skynet/go-llama.cpp go-llama
|
|
|
|
$(MAKE) -C go-llama generic-libbinding.a
|
|
|
|
|
2023-04-20 17:33:36 +00:00
|
|
|
replace:
|
2023-04-19 15:10:29 +00:00
|
|
|
$(GOCMD) mod edit -replace github.com/go-skynet/go-llama.cpp=$(shell pwd)/go-llama
|
|
|
|
$(GOCMD) mod edit -replace github.com/go-skynet/go-gpt4all-j.cpp=$(shell pwd)/go-gpt4all-j
|
2023-04-20 17:33:36 +00:00
|
|
|
$(GOCMD) mod edit -replace github.com/go-skynet/go-gpt2.cpp=$(shell pwd)/go-gpt2.cpp
|
|
|
|
|
|
|
|
prepare: go-llama go-gpt4all-j/libgptj.a go-gpt2.cpp/libgpt2.a replace
|
|
|
|
|
|
|
|
prepare-generic: go-llama-generic go-gpt4all-j/libgptj.a-generic go-gpt2.cpp/libgpt2.a-generic replace
|
2023-04-19 15:10:29 +00:00
|
|
|
|
2023-04-15 23:39:07 +00:00
|
|
|
clean: ## Remove build related file
|
|
|
|
rm -fr ./go-llama
|
2023-04-19 15:10:29 +00:00
|
|
|
rm -rf ./go-gpt4all-j
|
2023-04-20 17:33:36 +00:00
|
|
|
rm -rf ./go-gpt2.cpp
|
2023-04-19 15:10:29 +00:00
|
|
|
rm -rf $(BINARY_NAME)
|
2023-04-15 23:39:07 +00:00
|
|
|
|
|
|
|
## Run:
|
|
|
|
run: prepare
|
2023-04-19 15:10:29 +00:00
|
|
|
$(GOCMD) run ./ api
|
2023-04-15 23:39:07 +00:00
|
|
|
|
|
|
|
## Test:
|
|
|
|
test: ## Run the tests of the project
|
|
|
|
$(GOTEST) -v -race ./... $(OUTPUT_OPTIONS)
|
|
|
|
|
|
|
|
## Help:
|
|
|
|
help: ## Show this help.
|
|
|
|
@echo ''
|
|
|
|
@echo 'Usage:'
|
|
|
|
@echo ' ${YELLOW}make${RESET} ${GREEN}<target>${RESET}'
|
|
|
|
@echo ''
|
|
|
|
@echo 'Targets:'
|
|
|
|
@awk 'BEGIN {FS = ":.*?## "} { \
|
|
|
|
if (/^[a-zA-Z_-]+:.*?##.*$$/) {printf " ${YELLOW}%-20s${GREEN}%s${RESET}\n", $$1, $$2} \
|
|
|
|
else if (/^## .*$$/) {printf " ${CYAN}%s${RESET}\n", substr($$1,4)} \
|
2023-04-17 19:34:02 +00:00
|
|
|
}' $(MAKEFILE_LIST)
|