MCPcopy Create free account
hub / github.com/city96/ComfyUI-GGUF

github.com/city96/ComfyUI-GGUF @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
126 symbols 339 edges 9 files ⚖ Apache-2.0 6 documented · 5% updated 7mo ago★ 3,919200 open issues

Browse by type

Functions 99 Types & classes 27
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

ComfyUI-GGUF

GGUF Quantization support for native ComfyUI models

This is currently very much WIP. These custom nodes provide support for model files stored in the GGUF format popularized by llama.cpp.

While quantization wasn't feasible for regular UNET models (conv2d), transformer/DiT models such as flux seem less affected by quantization. This allows running it in much lower bits per weight variable bitrate quants on low-end GPUs. For further VRAM savings, a node to load a quantized version of the T5 text encoder is also included.

Comfy_Flux1_dev_Q4_0_GGUF_1024

Note: The "Force/Set CLIP Device" is NOT part of this node pack. Do not install it if you only have one GPU. Do not set it to cuda:0 then complain about OOM errors if you do not undestand what it is for. There is not need to copy the workflow above, just use your own workflow and replace the stock "Load Diffusion Model" with the "Unet Loader (GGUF)" node.

Installation

[!IMPORTANT]
Make sure your ComfyUI is on a recent-enough version to support custom ops when loading the UNET-only.

To install the custom node normally, git clone this repository into your custom nodes folder (ComfyUI/custom_nodes) and install the only dependency for inference (pip install --upgrade gguf)

git clone https://github.com/city96/ComfyUI-GGUF

To install the custom node on a standalone ComfyUI release, open a CMD inside the "ComfyUI_windows_portable" folder (where your run_nvidia_gpu.bat file is) and use the following commands:

git clone https://github.com/city96/ComfyUI-GGUF ComfyUI/custom_nodes/ComfyUI-GGUF
.\python_embeded\python.exe -s -m pip install -r .\ComfyUI\custom_nodes\ComfyUI-GGUF\requirements.txt

On MacOS sequoia, torch 2.4.1 seems to be required, as 2.6.X nightly versions cause a "M1 buffer is not large enough" error. See this issue for more information/workarounds.

Usage

Simply use the GGUF Unet loader found under the bootleg category. Place the .gguf model files in your ComfyUI/models/unet folder.

LoRA loading is experimental but it should work with just the built-in LoRA loader node(s).

Pre-quantized models:

Initial support for quantizing T5 has also been added recently, these can be used using the various *CLIPLoader (gguf) nodes which can be used inplace of the regular ones. For the CLIP model, use whatever model you were using before for CLIP. The loader can handle both types of files - gguf and regular safetensors/bin.

See the instructions in the tools folder for how to create your own quants.

Core symbols most depended-on inside this repo

browse all functions →

Shape

Function 55
Method 44
Class 27

Languages

Python100%

Modules by API surface

ops.py36 symbols
nodes.py27 symbols
tools/convert.py21 symbols
dequant.py21 symbols
loader.py14 symbols
tools/fix_5d_tensors.py4 symbols
tools/fix_lines_ending.py2 symbols
tools/read_tensors.py1 symbols

Dependencies from manifests, versioned

gguf0.13.0 · 1×
protobuf

For agents

$ claude mcp add ComfyUI-GGUF \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page