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,12 @@
#!/bin/bash
echo "=== GGUF ops.py cast_bias_weight ==="
grep -n "cast_bias_weight\|def forward_ggml\|def forward_comfy" /home/fabian/ComfyUI/custom_nodes/ComfyUI-GGUF/ops.py | head -n 20
echo ""
echo "=== cast_bias_weight full function ==="
sed -n '/def cast_bias_weight/,/^[[:space:]]*def /p' /home/fabian/ComfyUI/custom_nodes/ComfyUI-GGUF/ops.py | head -n 30
echo ""
echo "=== forward_ggml_cast_weights call ==="
sed -n '/def forward_ggml_cast_weights/,/^[[:space:]]*def /p' /home/fabian/ComfyUI/custom_nodes/ComfyUI-GGUF/ops.py | head -n 20
echo ""
echo "=== dequant.py get_scale_min ==="
sed -n '125,145p' /home/fabian/ComfyUI/custom_nodes/ComfyUI-GGUF/dequant.py