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
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
echo "=== DMESG GPU ==="
sudo dmesg | grep -iE "amdgpu|gfx|error|reset|fault" | tail -15
echo "=== KFD THREADS ==="
ls /proc/15070/task/ | while read tid; do
wchan=$(cat /proc/15070/task/$tid/wchan 2>/dev/null)
if [ "$wchan" = "kfd_wait_on_events" ] || [ "$wchan" = "poll_idle" ]; then
echo "Thread $tid: $wchan"
fi
done
echo "=== LOG ERRORS ==="
grep -i "error\|traceback\|exception\|fail" /home/fabian/comfyui5.log 2>/dev/null | tail -10
echo "=== LOG LAST LINE (not clip) ==="
grep -v "clip missing" /home/fabian/comfyui5.log | tail -5