Files

82 lines
2.4 KiB
Makefile
Raw Permalink Normal View History

PORTNAME= llama-cpp
DISTVERSIONPREFIX= b
2025-06-23 03:26:31 -07:00
DISTVERSION= 5740
CATEGORIES= misc # machine-learning
MAINTAINER= yuri@FreeBSD.org
2024-04-18 17:04:34 -07:00
COMMENT= Facebook's LLaMA model in C/C++ # '
WWW= https://github.com/ggerganov/llama.cpp
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
2024-05-06 01:38:33 -07:00
BROKEN_armv7= clang crashes, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278810
2024-09-18 20:10:31 -07:00
BROKEN_i386= compilation fails, see https://github.com/ggerganov/llama.cpp/issues/9545
2024-05-06 01:38:33 -07:00
2024-12-26 13:16:56 -08:00
USES= cmake:testing compiler:c++11-lang python:run shebangfix
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= ggerganov
GH_PROJECT= llama.cpp
GH_TUPLE= nomic-ai:kompute:4565194:kompute/kompute
SHEBANG_GLOB= *.py
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_OFF= GGML_NATIVE \
2025-04-10 18:09:26 -07:00
FREEBSD_ALLOW_ADVANCED_CPU_FEATURES \
LLAMA_BUILD_TESTS
CMAKE_TESTING_ON= LLAMA_BUILD_TESTS
# user for llama-server, only used when EXAMPLES=ON
USER= nobody
SUB_LIST= USER=${USER}
2025-01-01 16:38:51 -08:00
OPTIONS_DEFINE= CURL EXAMPLES VULKAN
OPTIONS_DEFAULT= CURL VULKAN
OPTIONS_SUB= yes
2025-01-01 16:38:51 -08:00
CURL_DESCR= Use libcurl to download model from an URL
CURL_CMAKE_BOOL= LLAMA_CURL
CURL_USES= localbase
CURL_LIB_DEPENDS= libcurl.so:ftp/curl
EXAMPLES_CMAKE_BOOL= LLAMA_BUILD_EXAMPLES
2024-08-07 00:46:42 -07:00
VULKAN_DESC= Vulkan GPU offload support
VULKAN_CMAKE_BOOL= GGML_VULKAN
VULKAN_BUILD_DEPENDS= glslc:graphics/shaderc \
vulkan-headers>0:graphics/vulkan-headers
VULKAN_LIB_DEPENDS= libvulkan.so:graphics/vulkan-loader
2025-02-06 07:00:18 -08:00
BINARY_ALIAS= git=false \
python=${PYTHON_CMD} # for tests
2025-04-11 07:47:00 -07:00
post-patch: # set version in the code
@${REINPLACE_CMD} \
-e "s|set(BUILD_NUMBER 0)|set(BUILD_NUMBER ${DISTVERSION})|" \
${WRKSRC}/cmake/build-info.cmake
2024-12-23 02:05:12 -08:00
do-test-ci: # build of tests fails, see https://github.com/ggerganov/llama.cpp/issues/10955
@cd ${WRKSRC} && \
${SETENV} ${MAKE_ENV} bash ci/run.sh ./tmp/results ./tmp/mnt
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MEXAMPLES}
USE_RC_SUBR= llama-server
.endif
2025-01-10 22:33:49 -08:00
# tests as of 4458: 97% tests passed, 1 tests failed out of 31, see https://github.com/ggerganov/llama.cpp/issues/11036
2024-04-15 01:55:54 -07:00
2025-02-06 07:00:18 -08:00
# tests as of 4649:
# 88% tests passed, 4 tests failed out of 32
# The following tests FAILED:
# 18 - test-chat (Subprocess aborted) main # see https://github.com/ggerganov/llama.cpp/issues/11705
# 24 - test-gguf (SEGFAULT) main
# 25 - test-backend-ops (SEGFAULT) main
# 32 - test-eval-callback (SEGFAULT) curl eval-callback
.include <bsd.port.mk>