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
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
echo "=== FULL LOG (without clip missing) ==="
grep -v "clip missing" /home/fabian/comfyui5.log
echo "=== OUTPUT DIR ==="
ls -la /home/fabian/ComfyUI/output/ 2>/dev/null
echo "=== THREAD STATES ==="
for tid in $(ls /proc/15070/task/ 2>/dev/null); do
wchan=$(cat /proc/15070/task/$tid/wchan 2>/dev/null)
if [ -n "$wchan" ] && [ "$wchan" != "0" ]; then
echo "$tid: $wchan"
fi
done