PC for ComfyUI 2026: Recommended PC Model Guide, VRAM, and Workflows

ComfyUI became the go-to interface for AI image generation in 2026. Nodal 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 pros use. But ComfyUI is also demanding and finicky: multi-model workflows, hundreds of custom nodes, stacked ControlNets, TensorRT… What PC do you really need to get the best out of it? This guide gives you the precise answer, model by model, with real benchmarks.


Why did ComfyUI become THE standard in 2026?

In 2024, Automatic1111 (A1111) dominated. In 2026, ComfyUI took over for four reasons:

  • Nodal architecture. You visually build your pipeline: model loading nodes, conditioning, sampler, VAE decode, etc. You see exactly what happens at each step — and you can modify everything.
  • Efficient memory management. ComfyUI loads and unloads components on demand. A 12 GB GPU can run workflows that crash on A1111 or Forge.
  • Support for new models within days. Flux, SD 3.5, Qwen Image, Hunyuan Video — all natively supported just days after release. A1111 often takes months.
  • Huge custom nodes 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 real 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, do 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 once you start stacking: adding a ControlNet (+2 GB), an IPAdapter (+2 GB), a refiner (+5 GB), a LoRA (+200 MB each), an upscaler (+3 GB)… you quickly reach 20 GB even on a basic SDXL model.

Here are the true requirements by workflow type as of May 2026:

📷

Simple SDXL generation

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

8 GB VRAM is enough
🎨

SDXL + Refiner + 1 ControlNet

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

VRAM: 12-16 GB

FP8 Dev Flow + ControlNet

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

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

SDXL + IPAdapter + ControlNet + LoRA stack

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

VRAM: 16-24 GB
🎬

AnimateDiff / AI video (LTX-Video, Hunyuan)

Short video sequence generation. Hunyuan Video and LTX-Video are very VRAM-intensive per image × number of frames.

VRAM: minimum 24 GB, comfortable 32 GB
🔄

Parallel multi-model (SDXL + Flux + Qwen)

Advanced comparative workflows or production pipelines chaining multiple different models without unloading.

VRAM: 32 GB or dual-GPU
🧪

Flux LoRA training (via ComfyUI nodes)

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

VRAM: minimum 24 GB, comfortable 32 GB
🏭

Production studio batch + server API

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

VRAM: 32 GB or multi-GPU


Recommended minimum VRAM for ComfyUI in 2026

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


Beyond VRAM: what matters for ComfyUI


System RAM — minimum 32 GB, 64 GB recommended

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


NVMe Gen 4 or Gen 5 SSD — critical

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


CPU — less critical than you think

ComfyUI inference is ~95% GPU. The CPU is used for pre-processing (loading models, parsing the JSON workflow, 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 matters almost as much as VRAM. An RTX 5090 (1,792 GB/s) is 2.7× faster than an RTX 5060 Ti 16 GB (672 GB/s) on Flux, even when the model fits on both cards. That’s why the RTX 4060 Ti 16 GB (288 GB/s) remains a trap despite its decent VRAM.


ComfyUI 2026 optimizations — gain 30-60% speed

Some launch flags and extensions transform your ComfyUI setup:

# Launch optimized ComfyUI 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 slow (compilation), subsequent runs ultra-fast.
  • FP8 / GGUF quantization: FP8 flow = -50% VRAM, nearly identical quality. GGUF Q4/Q6 = even less VRAM for 12 GB setups.
  • Flash Attention 2: saves 15-25% VRAM on supported architectures (Blackwell, Ada Lovelace).
  • Tiled VAE in VAE Decode: enables 4K even on 16 GB.
  • ComfyUI-Crystools: real-time GPU/VRAM monitoring in the interface — essential for optimizing workflows.
  • RAM disk for models: if you have 128 GB RAM, mapping a RAM disk for checkpoints enables instant switches.


Must-have ComfyUI custom nodes in 2026

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


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 stations specifically tested under ComfyUI. On 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 and generate your first image in under 2 minutes.

Entry-level ComfyUI
PC ComfyUI Radiance CoreAI 16 RTX 5060 Ti 16GB - 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. Upgradable: GPU upgrade possible later without changing platform.

1 703 € starting from

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

Configure this station →
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

✅ Complete pro workflow · Multi-ControlNet · IPAdapter stack · TensorRT · AnimateDiff

The versatile station for illustrators and creators stacking nodes. 1.9× higher bandwidth for smooth generations in complex workflows. 32 GB DDR5 keeps Flux + SDXL + 5 LoRAs + 3 ControlNets in memory simultaneously.

2 442 € starting from

Pre-configured TensorRT · Essential custom nodes installed

Configure this station →
ComfyUI Reference · AI Video · LoRA Training
PC ComfyUI RTX 5090 32GB - 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) · LoRA training Flux · Simultaneous multi-model

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

6 042 € starting from

Complete ComfyUI library pre-installed on request

Configure this station →
Studio · Bi-GPU · API server
ComfyUI workstation dual RTX 5090 - batch generation API studio

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 server multi-tenant · Parallel pipelines · Batch production · Long AI video

For studios and creative agencies doing high-volume production. 2× RTX 5090 independent via ComfyUI server mode: one GPU dedicated to 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
ComfyUI pro workstation 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 · Base model fine-tuning · Flux 2 9B batches · 24/7 production

The ultimate station for pro studios doing long AI video (Hunyuan 30+ seconds), full model fine-tuning, or 24/7 production. 192 GB ECC VRAM allows loading multiple full 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
ComfyUI Threadripper PRO 2 TB RAM AI research workstation

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 long-lasting machine for 5+ years to never be limited.

20 213 € starting from

Custom · Personalized quote · On-site installation

Request a quote →


Frequently Asked Questions — PC 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 crashes. But as soon as you stack custom nodes and complex workflows (multi-ControlNet, IPAdapter, AnimateDiff…), ComfyUI can consume more than A1111 on the same task because it loads everything into memory to optimize speed.


How much VRAM is needed to run ComfyUI smoothly?

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


What is the difference between ComfyUI and Forge UI?

ComfyUI is nodal (visual node graph) — 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 as it supports all new models first and has an unmatched custom node ecosystem.


Can ComfyUI be used on AMD or Mac GPUs?

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


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

Yes. ComfyUI can be run in server mode with a REST API accessible on the local network or via Cloudflare Tunnel. Multiple users can queue workflows. For 3-10 simultaneous users, the Rack 2× RTX 5090 or Rack 2× RTX 6000 ECC are ideal configurations — each GPU can handle 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. Downside: 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 for ComfyUI with an RTX 5090?

Minimum 1,200 W 80+ Gold. The RTX 5090 consumes up to 575 W at peak, the Ryzen 9 9950X3D around 170 W, plus other components. Allow 30-40% margin for power supply longevity and simultaneous power spikes. 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 come 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 starts with a conversation. Fill out this form, and an expert will quickly respond 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 available
No commitment on demand
Dedicated support before and after purchase
contact@radiancesystems.eu
+33 4 65 84 48 21
Mon – Fri, 9 AM – 5 PM
01 What is your primary use of 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 approximate budget?
Single choice.
07 When would you like to receive your system?
Single choice.
08 Would you like assistance with the setup?
Single choice. A Radiance technician can assist you at your location or remotely.
09 Delivery country (EU only) *
We only deliver within the European Union (EU).
10 Additional information (optional but very useful)
Briefly describe your project, your specific constraints, or any useful information.
11 Would you like to be contacted to discuss your project?
If you choose "Quote only," you will be able to 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 from 9 AM to 5 PM).

📞 +33 4 65 84 48 21