10 lines
343 B
Bash
10 lines
343 B
Bash
#!/bin/bash
|
|
echo "=== GGMLTensor class ==="
|
|
sed -n '1,85p' /home/fabian/ComfyUI/custom_nodes/ComfyUI-GGUF/ops.py
|
|
echo ""
|
|
echo "=== load sig ==="
|
|
grep -n "def load_models_gpu" /home/fabian/ComfyUI/comfy/model_management.py
|
|
echo ""
|
|
echo "=== what is m.model ==="
|
|
grep -n "class Loaded" /home/fabian/ComfyUI/comfy/model_management.py | head -n 5
|