PC for ComfyUI 2026: Recommended PC model guide, VRAM, and workflows

ComfyUI has become the go-to interface for AI image generation in 2026. Node-based architecture, efficient memory management, native support for Flux, SD 3.5, Qwen Image, AI video (Hunyuan, LTX-Video), audio (StableAudio) — it's the tool all the pros use. But ComfyUI is also resource-intensive and temperamental: multi-model workflows, hundreds of custom nodes, stacked ControlNets, TensorRT… What kind of PC do you really need to get the most out of it? This guide gives you the precise answer, model by model, with real benchmarks.


Why ComfyUI became THE standard in 2026?

In 2024, Automatic1111 (A1111) dominated. In 2026, ComfyUI has taken its place for four reasons:

  • Node-based architecture. You visually build your pipeline: model loading nodes, conditioning, sampler, VAE decode, etc. You see exactly what's happening at each step — and you can modify everything.
  • Efficient memory management. ComfyUI loads and unloads components on demand. A 12GB GPU can run workflows that crash in A1111 or Forge.
  • Support for new models in days. Flux, SD 3.5, Qwen Image, Hunyuan Video — all natively supported within days of their release. A1111 often takes months.
  • Huge custom node ecosystem. ComfyUI Manager provides access to over 2,000 community extensions as of May 2026 — ControlNet Aux, IPAdapter, AnimateDiff, ComfyRoll, Impact Pack, WAS Suite, and many more.
💡 The true power of ComfyUI: beyond simple text-to-image generation, ComfyUI allows you to create complete pipelines — for example: generate a character with SDXL, refine it with a refiner, apply a ControlNet pose, add an IPAdapter style, perform a 2-pass upscale, then generate a short video with LTX-Video — all in a single workflow that you save and reuse.


The real hardware requirements for ComfyUI in 2026

ComfyUI has a reputation for being "VRAM efficient." This is true for simple generation. False as soon as you stack things up: adding a ControlNet (+2GB), an IPAdapter (+2GB), a refiner (+5GB), a LoRA (+200MB each), an upscaler (+3GB)… you quickly reach 20GB even on a basic SDXL model.

Here are the real needs by workflow type in May 2026:

📷

Simple SDXL Generation

Basic text-to-image workflow with SDXL checkpoint, sampler, VAE decode. No extras.

VRAM: 8GB is enough
🎨

SDXL + Refiner + 1 ControlNet

Classic pro pipeline: base SDXL → refiner → ControlNet pose or depth. Standard illustration setup.

VRAM: 12-16GB

Flux Dev FP8 + ControlNet

The default 2026 workflow. Quantized Flux Dev FP8 (~13GB) + ControlNet (Union or Canny).

VRAM: 16GB (tight) / 20GB (comfortable)
🎭

SDXL + IPAdapter + ControlNet + LoRA stack

Pro illustration workflow: style transfer (IPAdapter), pose (ControlNet), 2-3 stacked LoRAs, upscale.

VRAM: 16-24GB
🎬

AnimateDiff / AI Video (LTX-Video, Hunyuan)

Generation of short video sequences. Hunyuan Video and LTX-Video are very VRAM intensive per image × number of frames.

VRAM: 24GB minimum, 32GB comfortable
🔄

Parallel multi-model (SDXL + Flux + Qwen)

Advanced comparative workflows or production pipelines that chain several different models without unloading.

VRAM: 32GB or bi-GPU
🧪

Flux LoRA training (via ComfyUI nodes)

Training Flux LoRA directly from ComfyUI via custom nodes (Kohya, AI Toolkit). Very demanding.

VRAM: 24GB minimum, 32GB comfortable
🏭

Production studio batch + API server

ComfyUI in server mode (REST API), batches of 10-50 Flux images, parallel queues.

VRAM: 32GB or multi-GPU


Minimum recommended VRAM for ComfyUI in 2026

ComfyUI Usage Minimum VRAM Comfortable VRAM GPU type
Discovery / Simple SDXL 8GB 12GB RTX 5060 12GB
Standard Pro Workflow ⭐ 16GB 16GB RTX 5060 Ti / 5070 Ti 16GB
Flux FP16 / IPAdapter stack 16GB (tight) 24GB RTX 4090 24GB
AI Video + LoRA training 24GB 32GB RTX 5090 32GB
Multi-GPU studio production 2× 32GB 2× 96GB ECC Rack 2× RTX 5090 or 2× RTX 6000 Pro
⚠️ The classic ComfyUI mistake: buying a GPU "that runs SDXL" then discovering that as soon as you stack a refiner, a ControlNet, and an IPAdapter, ComfyUI has to unload/reload models at each step — every generation becomes 3-5× slower. For ComfyUI, budgeting an extra 4-8GB of VRAM beyond the main model is crucial.


Beyond VRAM: what matters for ComfyUI


System RAM — 32GB minimum, 64GB recommended

ComfyUI swaps models between VRAM and system RAM when VRAM is insufficient. With 32GB DDR5, you can keep 2-3 checkpoints loaded in RAM for instant switching. With 64GB, you can load your entire library (base SDXL + refiner + Flux + 5 LoRAs + 3 ControlNets) into memory — no disk reloading between generations.


NVMe SSD Gen 4 or Gen 5 — critical

Every checkpoint switch = disk read. A Flux Dev weighs 24GB, an SDXL 7GB, a ControlNet 2-5GB. On a Gen 4 SSD (5,000 MB/s), initial loading of a Flux + IPAdapter + ControlNet workflow takes ~8 seconds. On Gen 5 (12,000+ MB/s), it's 3 seconds. On a SATA SSD, 30+ seconds. Plan for at least 2TB NVMe Gen 4 to avoid managing an external library.


CPU — less critical than you might think

ComfyUI inference is ~95% GPU-bound. The CPU is used for pre-processing (model loading, JSON workflow parsing, PIL post-processing). A recent Ryzen 5 is sufficient. For complex workflows with dozens of nodes or real-time pipelines, a Ryzen 7 or 9 offers marginal comfort.


GPU Bandwidth — the hidden optimization

For ComfyUI, GPU memory bandwidth is almost as important as VRAM. An RTX 5090 (1,792 GB/s) is 2.7× faster than an RTX 5060 Ti 16GB (672 GB/s) on Flux, even when the model fits on both cards. This is why the RTX 4060 Ti 16GB (288 GB/s) remains a trap despite its adequate VRAM.


ComfyUI 2026 Optimizations — gain 30-60% speed

A few launch flags and extensions can transform your ComfyUI setup:

# Optimized ComfyUI launch for Blackwell (RTX 50xx):
python main.py \
  --use-pytorch-cross-attention \
  --fast \
  --highvram \
  --enable-cors-header

# Useful environment variables:
export PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True
export CUDA_LAUNCH_BLOCKING=0
export TORCHINDUCTOR_CACHE_DIR=/path/ssd/cache
  • TensorRT compilation via ComfyUI-TensorRT: +30-60% speed on repetitive workflows. First generation is slow (compilation), subsequent ones are ultra-fast.
  • FP8 / GGUF quantization: Flux in FP8 = -50% VRAM, almost identical quality. GGUF Q4/Q6 = even less VRAM for 12GB configs.
  • Flash Attention 2: 15-25% VRAM savings on supported architectures (Blackwell, Ada Lovelace).
  • Tiled VAE in VAE Decode: enables 4K even on 16GB.
  • ComfyUI-Crystools: real-time GPU/VRAM monitoring in the interface — essential for optimizing workflows.
  • RAM disk for models: if you have 128GB RAM, mapping a RAM disk for checkpoints provides instant switches.


Essential ComfyUI Custom Nodes in 2026

Custom Node Utility VRAM Impact
ComfyUI Manager Install/update custom nodes in 1 click None
ComfyUI-Impact-Pack Face/Hand detailer, segmentation, regional prompt +1-3GB
ComfyUI_IPAdapter_plus Style transfer from a source image +1-2GB
ComfyUI-AnimateDiff-Evolved Animate sequences from a still image +4-8GB
comfyui_controlnet_aux ControlNet pre-processors (depth, pose, canny, lineart) +0.5-2GB
ComfyUI-WAS-Suite 200+ utility nodes (text, masks, math) Negligible
ComfyUI-TensorRT TensorRT compilation = +30-60% speed +2-4GB during compilation
ComfyUI-Crystools Real-time GPU/CPU/RAM monitoring Negligible
ComfyUI-HunyuanVideoWrapper Hunyuan video generation +12-20GB
ComfyUI-LTXVideo LTX video generation (faster than Hunyuan) +8-14GB


Quick Optimized ComfyUI Installation on Your PC

# 1. Clone ComfyUI
git clone https://github.com/comfyanonymous/ComfyUI
cd ComfyUI

# 2. Create a Python 3.12 venv
python -m venv venv
source venv/bin/activate    # Linux/Mac
# .\venv\Scripts\activate   # Windows

# 3. PyTorch with CUDA 12.8 (RTX 50xx Blackwell)
pip install torch torchvision torchaudio \
  --index-url https://download.pytorch.org/whl/cu128

# 4. ComfyUI dependencies
pip install -r requirements.txt

# 5. Install ComfyUI Manager (essential)
cd custom_nodes
git clone https://github.com/ltdrdata/ComfyUI-Manager
cd ..

# 6. Download a base model (Flux Dev FP8)
# https://huggingface.co/Comfy-Org/flux1-dev
# Place the .safetensors in ComfyUI/models/diffusion_models/

# 7. Launch optimized ComfyUI
python main.py --use-pytorch-cross-attention --fast --highvram


Our Optimized ComfyUI PCs — Pre-configured and Ready to Generate

Radiance Systems designs workstations specifically tested with ComfyUI. Upon request, we deliver your PC with ComfyUI installed, configured (PyTorch CUDA, Manager, essential custom nodes), and the models of your choice downloaded — Flux Dev, SDXL, ControlNets, IPAdapter. You start, you generate your first image in under 2 minutes.

ComfyUI Entry-Level
PC ComfyUI Radiance CoreAI 16 RTX 5060 Ti 16Go - standard workflow

Radiance PC CoreAI 16 — RTX 5060 Ti 16 GB

CPU AMD Ryzen 5 7500F
GPU RTX 5060 Ti 16 GB GDDR7
RAM DDR5 16 GB
Storage NVMe 1 TB Gen 4
Platform AM5 DDR5
OS Windows 11 Pro / Ubuntu

✅ SDXL + Refiner Workflows · Flux Dev FP8 · ControlNet · IPAdapter · Light LoRA stack

Ideal entry point for serious ComfyUI in 2026. 16 GB GDDR7 — the minimum for standard pro workflows. AM5 DDR5 platform for fast model switching. Scalable: GPU upgrade possible later without changing platform.

€1,703 starting from

ComfyUI + Manager + Flux Dev FP8 pre-installed on request

Configure this workstation →
Pro Workflows · Multi-ControlNet
PC ComfyUI Radiance CoreAI 32 RTX 5070 Ti - pro workflows

Radiance PC CoreAI 32 — RTX 5070 Ti 16 GB

CPU AMD Ryzen 9 9900X
GPU RTX 5070 Ti 16 GB GDDR7
RAM DDR5 32 GB
Storage NVMe 1 TB Gen 4
GPU Bandwidth ~1,280 GB/s
OS Windows 11 Pro / Ubuntu

✅ Full Pro Workflow · Multi-ControlNet · IPAdapter stack · TensorRT · AnimateDiff

The versatile workstation for illustrators and creators who stack nodes. 1.9× higher bandwidth for smooth generations in complex workflows. 32 GB DDR5 allows keeping Flux + SDXL + 5 LoRAs + 3 ControlNets in memory simultaneously.

€2,442 starting from

TensorRT pre-configured · Essential custom nodes installed

Configure this workstation →
ComfyUI Benchmark · AI Video · LoRA Training
PC ComfyUI RTX 5090 32Go - AI video Hunyuan LTX training

⭐ Radiance PC CoreAI 64 — RTX 5090 32 GB

CPU AMD Ryzen 9 9950X3D
GPU RTX 5090 32 GB GDDR7
RAM DDR5 64 GB
Storage NVMe 1 TB Gen 4
GPU Bandwidth 1,792 GB/s
Power Supply 1,200 W 80+ Gold

✅ All ComfyUI Workflows · AI Video (LTX, Hunyuan) · Flux LoRA Training · Simultaneous Multi-Model

The best mainstream workstation for ComfyUI in 2026. 32 GB GDDR7 allows keeping all components loaded simultaneously — no offloading between nodes. Record bandwidth (1,792 GB/s) for workflows 3-5× faster than an RTX 5070 Ti. AI video, Flux LoRA training, Flux Dev FP16 batches — everything is accessible.

€6,042 starting from

Complete ComfyUI library pre-installed on request

Configure this workstation →
Studio · Dual GPU · API Server
Workstation ComfyUI dual RTX 5090 - studio batch generation API

Radiance CoreAI Rack — 2× RTX 5090 (64 GB VRAM)

CPU AMD Ryzen 9 9950X3D
GPU 2× RTX 5090 32 GB
Total VRAM 64 GB GDDR7
RAM DDR5 128 GB
Form Factor 4U Rack
Power Supply 2,000 W Platinum

✅ ComfyUI multi-tenant server · Parallel pipelines · Batch production · Long AI video

For studios and creative agencies performing high-volume production. 2× independent RTX 5090s via ComfyUI server mode: one GPU dedicated to the current generation, the other to pre-rendering the next batch or training LoRAs. Ideal for teams of 3-10 creatives.

€11,221 starting from

ComfyUI server API · Multi-tenant · 4U Rack

Configure this rack →
Pro Studio · ECC · Long AI Video · Fine-tuning
Workstation ComfyUI pro 2x RTX 6000 Blackwell ECC AI video

CoreAI 128 Rack — 2× RTX 6000 PRO Blackwell (192 GB ECC)

CPU AMD Ryzen 9 9950X3D
GPU 2× RTX 6000 96 GB ECC
Total VRAM 192 GB ECC
RAM DDR5 128 GB
Form Factor 4U Rack
Power Supply 2,000 W Platinum

✅ Long-duration AI video · Fine-tuning base models · Flux 2 9B batches · 24/7 Production

The ultimate workstation for pro studios performing long AI video (Hunyuan 30+ seconds), full model fine-tuning, or 24/7 production. 192 GB ECC VRAM allows loading multiple complete models simultaneously and generating massive batches without any memory constraints.

€27,980 starting from

Pro studios · Long AI video · Continuous production

Configure this rack →
Threadripper PRO · 2 TB RAM · HPC / R&D
Workstation ComfyUI Threadripper PRO 2 TB RAM AI research

Radiance PC Pro AI Ultra Threadripper

CPU Threadripper PRO 7955WX 16c
GPU RTX 6000 Blackwell 96 GB
RAM ECC DDR5 128 GB RDIMM
Max RAM Up to 2 TB ECC
Form Factor 4U Rack
Power Supply 2,000 W Platinum

✅ AI Research · Custom Node Development · HPC Pipelines · Heavy Fine-tuning

For VFX studios, researchers, and AI agencies developing their own custom nodes or advanced pipelines. Threadripper PRO sTR5 platform expandable up to 96 cores and 2 TB ECC RAM. The future-proof machine for 5+ years, ensuring you're never limited.

€20,213 starting from

Custom-made · Personalized quote · On-site installation

Request a quote →


Frequently Asked Questions — PCs for ComfyUI


Is ComfyUI more demanding than Automatic1111?

No, it's actually the opposite for simple generation. ComfyUI manages memory better and can run Flux on 12 GB where A1111 would crash. But as soon as you stack custom nodes and complex workflows (multi-ControlNet, IPAdapter, AnimateDiff…), ComfyUI can consume more than A1111 for the same task because it loads everything into memory to optimize speed.


How much VRAM is needed for comfortable ComfyUI use?

16 GB is the practical minimum in 2026 for professional workflows (SDXL + Refiner + ControlNet + LoRA stack). 24 GB offers comfort for Flux FP16 and complex pipelines. 32 GB (RTX 5090) or more is necessary for AI video, Flux LoRA training, or studio production.


What is the difference between ComfyUI and Forge UI?

ComfyUI is nodal (visual graph of nodes) — a steeper learning curve but total flexibility, ideal for pros. Forge UI is a fork of A1111 — classic interface, easier to learn, good VRAM management. For 2026, ComfyUI is the recommended choice because it supports all new models first and has an unparalleled ecosystem of custom nodes.


Can ComfyUI be used on AMD GPUs or Macs?

Yes, technically, via ROCm for AMD or MPS for Apple Silicon. In practice, many custom nodes (TensorRT, certain ControlNets, advanced IPAdapter, training nodes) are NVIDIA-only or very limited. For a PC dedicated to ComfyUI in 2026, NVIDIA is still strongly recommended — especially RTX 50xx (Blackwell) which have the best PyTorch and TensorRT support.


Can a ComfyUI server be run on a network for multiple users?

Yes. ComfyUI can be launched in server mode with a REST API accessible on the local network or via Cloudflare Tunnel. Multiple users can send workflows to a queue. For 3-10 simultaneous users, the 2× RTX 5090 Rack or the 2× RTX 6000 ECC Rack are ideal configurations — each GPU can process a separate queue.


Is TensorRT really worth it for ComfyUI?

Yes, for repetitive workflows (batch production, API server). Compilation takes 5-15 minutes per model/resolution but subsequent generations are 30-60% faster. Disadvantage: each model+resolution combination must be compiled separately, and the result is not portable between GPUs. For occasional experimentation, TensorRT is unnecessary.


What power supply is needed for ComfyUI with an RTX 5090?

1,200 W 80+ Gold minimum. The RTX 5090 consumes up to 575 W peak, the Ryzen 9 9950X3D around 170 W, plus other components. Allow 30-40% margin for power supply longevity and simultaneous consumption peaks. For dual-GPU, 2,000 W Platinum.


Linux or Windows for ComfyUI?

Linux (Ubuntu 24.04) offers the best raw performance, optimal CUDA support, and maximum compatibility with the most advanced custom nodes. Windows 11 works very well and is simpler for non-developers. WSL2 on Windows 11 offers an excellent compromise. Our workstations are delivered with the OS of your choice and ComfyUI pre-configured.

Back to the blog

Your quote for a custom AI solution within 24–48 hours

Every Radiance project begins with a conversation. Fill out this form and an expert will respond promptly with a solution tailored to your business and budget.

Response within 24–48 business hours
Delivery throughout Europe (EU)
2-year warranty included
On-site installation possible
No commitment required
Dedicated support before and after purchase
01 What is your primary use for AI?
Multiple choice.
02 In what context will the system be used?
Single choice.
03 What type of system are you looking for?
Single choice.
04 Which operating system do you prefer?
Single choice.
05 What are your expectations for the software?
Multiple choice.
06 What is your indicative budget?
Single choice.
07 When would you like to receive your system?
Single choice.
08 Would you like help with the setup?
Single choice. A Radiance technician can assist you remotely or in person.
09 Delivery Country (EU only) *
We only deliver within the European Union (EU).
10 Additional Information (optional but very helpful)
Please briefly describe your project, specific constraints, or any useful information.
11 Would you like to be contacted to discuss your project?
If you choose "Quote only", you can reply to our email to ask your questions and refine the quote.
12 Email *
We will send the quote to this address.

Any more questions?

Send us an email at contact@radiancesystems.eu or contact us via the contact form. We respond to all inquiries within 3 hours during business hours (Monday to Friday, 9am to 5pm).

📞 +33 4 65 84 48 21