mirror of
https://git.freebsd.org/ports.git
synced 2026-06-02 11:08:52 +00:00
90 lines
2.8 KiB
Makefile
90 lines
2.8 KiB
Makefile
PORTNAME= llama-cpp
|
|
DISTVERSIONPREFIX= b
|
|
DISTVERSION= 9426
|
|
CATEGORIES= misc # machine-learning
|
|
MASTER_SITES= https://huggingface.co/buckets/ggml-org/llama-ui/resolve/${DISTVERSIONPREFIX}${DISTVERSION}/:webui
|
|
DISTFILES= index.html:webui \
|
|
bundle.js:webui \
|
|
bundle.css:webui \
|
|
loading.html:webui
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Facebook's LLaMA model in C/C++ # '
|
|
WWW= https://github.com/ggerganov/llama.cpp
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BROKEN_armv7= clang crashes, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278810
|
|
BROKEN_i386= compilation fails, see https://github.com/ggerganov/llama.cpp/issues/9545
|
|
|
|
LIB_DEPENDS= libggml-base.so:misc/ggml
|
|
|
|
USES= cmake:testing compiler:c++11-lang python:run shebangfix ssl
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ggerganov
|
|
GH_PROJECT= llama.cpp
|
|
|
|
SHEBANG_GLOB= *.py
|
|
|
|
CMAKE_ON= BUILD_SHARED_LIBS \
|
|
LLAMA_USE_SYSTEM_GGML
|
|
CMAKE_OFF= GGML_NATIVE \
|
|
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}
|
|
|
|
PLIST_SUB+= DISTVERSION=${DISTVERSION}
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
OPTIONS_DEFAULT= EXAMPLES
|
|
OPTIONS_SUB= yes
|
|
|
|
EXAMPLES_CMAKE_BOOL= LLAMA_BUILD_EXAMPLES
|
|
|
|
BINARY_ALIAS= git=false \
|
|
python=${PYTHON_CMD} # for tests
|
|
|
|
post-extract:
|
|
@${MKDIR} ${WRKSRC}/build/tools/ui/dist
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/index.html ${WRKSRC}/build/tools/ui/dist/index.html
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/bundle.js ${WRKSRC}/build/tools/ui/dist/bundle.js
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/bundle.css ${WRKSRC}/build/tools/ui/dist/bundle.css
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/loading.html ${WRKSRC}/build/tools/ui/dist/loading.html
|
|
|
|
post-patch: # set version in the code
|
|
@${REINPLACE_CMD} \
|
|
-e "s|set(BUILD_NUMBER 0)|set(BUILD_NUMBER ${DISTVERSION})|" \
|
|
${WRKSRC}/cmake/build-info.cmake
|
|
|
|
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
|
|
|
|
# tests as of 4458: 97% tests passed, 1 tests failed out of 31, see https://github.com/ggerganov/llama.cpp/issues/11036
|
|
|
|
# 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>
|