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
@@ -0,0 +1,17 @@
#!/bin/bash
echo "=== Active build processes ==="
ps aux | grep -E "(build_pytorch|python.*setup|cmake|ninja|make|git.*(clone|submodule))" | grep -v grep | head -10
echo ""
echo "=== Log size ==="
wc -l ~/pytorch-build.log 2>/dev/null
echo ""
echo "=== Last 30 lines of log ==="
tail -30 ~/pytorch-build.log 2>/dev/null
echo ""
echo "=== Build directory status ==="
du -sh ~/pytorch-build 2>/dev/null
ls ~/pytorch-build/build 2>/dev/null && echo "Build dir exists" || echo "Build dir not yet created"
ls ~/pytorch-build/dist/*.whl 2>/dev/null && echo "Wheel found!" || echo "No wheel yet"