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
+13
View File
@@ -0,0 +1,13 @@
#!/bin/bash
# Monitor ComfyUI generation progress
for i in $(seq 1 20); do
echo "=== CHECK $i ($(date +%H:%M:%S)) ==="
tail -5 /home/fabian/comfyui8.log
if ls /home/fabian/ComfyUI/output/bc250_test* 2>/dev/null; then
echo "*** IMAGE SAVED! ***"
exit 0
fi
sleep 10
done
echo "=== TIMEOUT - checking full log tail ==="
tail -30 /home/fabian/comfyui8.log