We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36aeb0 commit cb8d8d6Copy full SHA for cb8d8d6
Makefile
@@ -43,10 +43,14 @@ docker: docker-dep docker-base
43
-f Dockerfile.llamacpp .
44
45
# Build llama-server
46
-llama-server: submodule-checkout
47
- @echo "Building llama-server"
48
- @cd llama.cpp && make -j$(nproc) llama-server
49
-
+llamacpp: submodule-checkout
+ @echo "Building llamacpp"
+ @cd llama.cpp && make -j$(nproc) libllama.a
+
50
+onnxruntime: submodule-checkout
51
+ @echo "Building onnxruntime"
52
+ @cd onnxruntime && ./build.sh --config Release --build_shared_lib --parallel --compile_no_warning_as_error --skip_submodule_sync
53
54
# Push docker container
55
docker-push: docker-dep
56
@echo push docker images
onnxruntime
0 commit comments