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
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
echo "=== ulimit ==="
ulimit -l
echo "=== Process Memory ==="
PID=$(pgrep -f "python.*main.py" | head -1)
if [ -n "$PID" ]; then
grep -i -E 'VmSize|VmRSS|VmLck|VmSwap' /proc/$PID/status
else
echo "ComfyUI not running"
fi
echo "=== System Memory ==="
free -m
echo "=== Swap ==="
swapon --show