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
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
# Aggressively kill all ComfyUI/python processes
pkill -9 -f 'python.*main.py' 2>/dev/null
pkill -9 -f 'python.*comfyui' 2>/dev/null
sleep 3
if pgrep -f 'python.*main.py' > /dev/null 2>&1; then
echo "STILL RUNNING"
ps aux | grep python | grep -v grep
else
echo "ALL STOPPED"
fi