mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
6ef78ef7f6
* bugfix: CUDA acceleration not working CUDA not working after #2286. Refactored the code to be more polish * Update requirements.txt Missing imports Signed-off-by: fakezeta <fakezeta@gmail.com> * Update requirements.txt Signed-off-by: fakezeta <fakezeta@gmail.com> --------- Signed-off-by: fakezeta <fakezeta@gmail.com>
10 lines
253 B
Bash
Executable File
10 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
source $(dirname $0)/../common/libbackend.sh
|
|
|
|
if [ -d "/opt/intel" ]; then
|
|
# Assumes we are using the Intel oneAPI container image
|
|
# https://github.com/intel/intel-extension-for-pytorch/issues/538
|
|
export XPU=1
|
|
fi
|
|
|
|
startBackend $@ |