Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
@@ -0,0 +1,11 @@
#!/bin/bash
set -e
cd /home/fabian/sd-restapi/build
rm -f CMakeCache.txt
echo "=== CMAKE ==="
cmake .. -DSD_VULKAN=ON -DGGML_VULKAN=ON -DSDCPP_WEBUI=ON -DSDCPP_WEBSOCKET=ON -DCMAKE_BUILD_TYPE=Release 2>&1 | grep -E "WebSocket|Web UI|===|Vulkan"
echo "=== BUILD ==="
make -j12 2>&1 | tail -5
echo "=== RESULT ==="
ls -la bin/sdcpp-restapi
echo "BUILD SUCCESS"