diff options
Diffstat (limited to 'llama.cpp/examples/sycl/build.sh')
| -rwxr-xr-x | llama.cpp/examples/sycl/build.sh | 23 |
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 |
