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
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
# Get Python stack trace with py-spy
PID=$(pgrep -f 'python main.py' | head -1)
if [ -z "$PID" ]; then echo "NO PROCESS"; exit 1; fi
echo "=== py-spy dump (thread stacks) ==="
/home/fabian/ComfyUI/venv/bin/py-spy dump --pid $PID 2>&1 | head -80