summaryrefslogtreecommitdiff
path: root/llama.cpp/examples/sycl/build.sh
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-02-12 20:57:17 +0100
commitb333b06772c89d96aacb5490d6a219fba7c09cc6 (patch)
tree211df60083a5946baa2ed61d33d8121b7e251b06 /llama.cpp/examples/sycl/build.sh
downloadllmnpc-b333b06772c89d96aacb5490d6a219fba7c09cc6.tar.gz
Engage!
Diffstat (limited to 'llama.cpp/examples/sycl/build.sh')
-rwxr-xr-xllama.cpp/examples/sycl/build.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/llama.cpp/examples/sycl/build.sh b/llama.cpp/examples/sycl/build.sh
new file mode 100755
index 0000000..635e74f
--- /dev/null
+++ b/llama.cpp/examples/sycl/build.sh
@@ -0,0 +1,23 @@
+#!/usr/bin/env bash
+# MIT license
+# Copyright (C) 2024 Intel Corporation
+# SPDX-License-Identifier: MIT
+
+mkdir -p build
+cd build
+source /opt/intel/oneapi/setvars.sh
+
+#for FP16
+#cmake .. -DGGML_SYCL=ON -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DGGML_SYCL_F16=ON -DLLAMA_OPENSSL=OFF # faster for long-prompt inference
+
+#for FP32
+cmake .. -DGGML_SYCL=ON -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DLLAMA_OPENSSL=OFF
+
+#build example/main
+#cmake --build . --config Release --target main
+
+#build example/llama-bench
+#cmake --build . --config Release --target llama-bench
+
+#build all binary
+cmake --build . --config Release -j -v