mirror of
https://github.com/mudler/LocalAI.git
synced 2026-04-01 13:42:20 -04:00
⬆️ Update antirez/voxtral.c Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com>
108 lines
2.4 KiB
Makefile
108 lines
2.4 KiB
Makefile
.NOTPARALLEL:
|
|
|
|
CMAKE_ARGS?=
|
|
BUILD_TYPE?=
|
|
NATIVE?=true
|
|
|
|
GOCMD?=go
|
|
GO_TAGS?=
|
|
JOBS?=$(shell nproc --ignore=1 2>/dev/null || sysctl -n hw.ncpu 2>/dev/null || echo 4)
|
|
|
|
# voxtral.c version
|
|
VOXTRAL_REPO?=https://github.com/antirez/voxtral.c
|
|
VOXTRAL_VERSION?=134d366c24d20c64b614a3dcc8bda2a6922d077d
|
|
|
|
# Detect OS
|
|
UNAME_S := $(shell uname -s)
|
|
|
|
# Shared library extension
|
|
ifeq ($(UNAME_S),Darwin)
|
|
SO_EXT=dylib
|
|
else
|
|
SO_EXT=so
|
|
endif
|
|
|
|
SO_TARGET?=libgovoxtral.$(SO_EXT)
|
|
|
|
CMAKE_ARGS+=-DBUILD_SHARED_LIBS=OFF
|
|
|
|
ifeq ($(NATIVE),false)
|
|
ifneq ($(UNAME_S),Darwin)
|
|
CMAKE_ARGS+=-DCMAKE_C_FLAGS="-march=x86-64"
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BUILD_TYPE),cublas)
|
|
CMAKE_ARGS+=-DUSE_OPENBLAS=OFF
|
|
else ifeq ($(BUILD_TYPE),hipblas)
|
|
CMAKE_ARGS+=-DUSE_OPENBLAS=OFF
|
|
else ifeq ($(BUILD_TYPE),metal)
|
|
CMAKE_ARGS+=-DUSE_OPENBLAS=OFF -DUSE_METAL=ON
|
|
else ifeq ($(UNAME_S),Darwin)
|
|
# Default on macOS: use Accelerate (no OpenBLAS needed)
|
|
CMAKE_ARGS+=-DUSE_OPENBLAS=OFF
|
|
else
|
|
CMAKE_ARGS+=-DUSE_OPENBLAS=ON
|
|
endif
|
|
|
|
# Single library target
|
|
ifeq ($(UNAME_S),Darwin)
|
|
VARIANT_TARGETS = libgovoxtral.dylib
|
|
else
|
|
VARIANT_TARGETS = libgovoxtral.so
|
|
endif
|
|
|
|
sources/voxtral.c:
|
|
mkdir -p sources/voxtral.c
|
|
cd sources/voxtral.c && \
|
|
git init && \
|
|
git remote add origin $(VOXTRAL_REPO) && \
|
|
git fetch origin && \
|
|
git checkout $(VOXTRAL_VERSION) && \
|
|
git submodule update --init --recursive --depth 1 --single-branch
|
|
|
|
voxtral: main.go govoxtral.go $(VARIANT_TARGETS)
|
|
CGO_ENABLED=0 $(GOCMD) build -tags "$(GO_TAGS)" -o voxtral ./
|
|
|
|
package: voxtral
|
|
bash package.sh
|
|
|
|
build: package
|
|
|
|
clean: purge
|
|
rm -rf libgovoxtral.so libgovoxtral.dylib package sources/voxtral.c voxtral
|
|
|
|
purge:
|
|
rm -rf build*
|
|
|
|
# Build single library
|
|
ifeq ($(UNAME_S),Darwin)
|
|
libgovoxtral.dylib: sources/voxtral.c
|
|
$(MAKE) purge
|
|
$(info Building voxtral: darwin)
|
|
SO_TARGET=libgovoxtral.dylib NATIVE=true $(MAKE) libgovoxtral-custom
|
|
rm -rfv build*
|
|
else
|
|
libgovoxtral.so: sources/voxtral.c
|
|
$(MAKE) purge
|
|
$(info Building voxtral)
|
|
SO_TARGET=libgovoxtral.so $(MAKE) libgovoxtral-custom
|
|
rm -rfv build*
|
|
endif
|
|
|
|
libgovoxtral-custom: CMakeLists.txt csrc/govoxtral.c csrc/govoxtral.h
|
|
mkdir -p build-$(SO_TARGET) && \
|
|
cd build-$(SO_TARGET) && \
|
|
cmake .. $(CMAKE_ARGS) && \
|
|
cmake --build . --config Release -j$(JOBS) && \
|
|
cd .. && \
|
|
(mv build-$(SO_TARGET)/libgovoxtral.so ./$(SO_TARGET) 2>/dev/null || \
|
|
mv build-$(SO_TARGET)/libgovoxtral.dylib ./$(SO_TARGET) 2>/dev/null)
|
|
|
|
test: voxtral
|
|
@echo "Running voxtral tests..."
|
|
bash test.sh
|
|
@echo "voxtral tests completed."
|
|
|
|
all: voxtral package
|