mirror of
https://github.com/mudler/LocalAI.git
synced 2026-09-18 10:53:22 -04:00
The CUDA 13 profile resolves PyTorch 2.14. Its headers cannot build the current FlashAttention source release under C++17, so the full backend matrix cannot publish the image. Leave FlashAttention optional on CUDA 13. The backend already retries model loading with SDPA when FlashAttention is unavailable. Assisted-by: Codex:gpt-5 Co-authored-by: Ettore Di Giacinto <mudler@localai.io>
12 lines
197 B
Bash
Executable File
12 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
backend_dir=$(dirname $0)
|
|
if [ -d $backend_dir/common ]; then
|
|
source $backend_dir/common/libbackend.sh
|
|
else
|
|
source $backend_dir/../common/libbackend.sh
|
|
fi
|
|
|
|
runUnittests
|