run-llama2.sh 897 Bytes
Newer Older
xuxzh1's avatar
init  
xuxzh1 committed
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

#  MIT license
#  Copyright (C) 2024 Intel Corporation
#  SPDX-License-Identifier: MIT

source /opt/intel/oneapi/setvars.sh

#export GGML_SYCL_DEBUG=1

#ZES_ENABLE_SYSMAN=1, Support to get free memory of GPU by sycl::aspect::ext_intel_free_memory. Recommended to use when --split-mode = layer.

xuxzh1's avatar
update  
xuxzh1 committed
13
14
15
16
17
18
19
INPUT_PROMPT="Building a website can be done in 10 simple steps:\nStep 1:"
MODEL_FILE=models/llama-2-7b.Q4_0.gguf
NGL=33
CONEXT=8192

if [ $# -gt 0 ]; then
    GGML_SYCL_DEVICE=$1
xuxzh1's avatar
init  
xuxzh1 committed
20
21
    echo "use $GGML_SYCL_DEVICE as main GPU"
    #use signle GPU only
xuxzh1's avatar
update  
xuxzh1 committed
22
23
    ZES_ENABLE_SYSMAN=1 ./build/bin/llama-cli -m ${MODEL_FILE} -p "${INPUT_PROMPT}" -n 400 -e -ngl ${NGL} -s 0 -c ${CONEXT} -mg $GGML_SYCL_DEVICE -sm none

xuxzh1's avatar
init  
xuxzh1 committed
24
25
else
    #use multiple GPUs with same max compute units
xuxzh1's avatar
update  
xuxzh1 committed
26
    ZES_ENABLE_SYSMAN=1 ./build/bin/llama-cli -m ${MODEL_FILE} -p "${INPUT_PROMPT}" -n 400 -e -ngl ${NGL} -s 0 -c ${CONEXT}
xuxzh1's avatar
init  
xuxzh1 committed
27
fi