Can your PC run this AI model?

Search any AI model and instantly see the RAM and VRAM you need, quantization by quantization — using real GGUF sizes and clearly labeled estimates.

Get my detected specs
Get-CimInstance Win32_VideoController | Select Name, AdapterRAM

Find by graphics card

NVIDIA RTX 5090 32 GB NVIDIA RTX 4090 24 GB NVIDIA RTX 3090 Ti 24 GB NVIDIA RTX 3090 24 GB NVIDIA RTX 5080 16 GB NVIDIA RTX 5070 Ti 16 GB NVIDIA RTX 4080 Super 16 GB NVIDIA RTX 4080 16 GB NVIDIA RTX 4070 Ti Super 16 GB NVIDIA RTX 5060 Ti 16 GB 16 GB NVIDIA RTX 4060 Ti 16 GB 16 GB NVIDIA RTX 5070 12 GB NVIDIA RTX 4070 Ti 12 GB NVIDIA RTX 4070 Super 12 GB NVIDIA RTX 4070 12 GB NVIDIA RTX 3080 Ti 12 GB NVIDIA RTX 3060 12 GB 12 GB NVIDIA RTX 2080 Ti 11 GB NVIDIA RTX 3080 10 GB NVIDIA RTX 5060 8 GB NVIDIA RTX 4060 Ti 8 GB 8 GB NVIDIA RTX 4060 8 GB NVIDIA RTX 3070 Ti 8 GB NVIDIA RTX 3070 8 GB NVIDIA RTX 3060 Ti 8 GB NVIDIA RTX 2080 Super 8 GB NVIDIA RTX 2070 Super 8 GB NVIDIA RTX 2060 Super 8 GB NVIDIA RTX 3050 8 GB NVIDIA RTX 2060 6 GB NVIDIA GTX 1660 Ti 6 GB NVIDIA GTX 1660 Super 6 GB NVIDIA GTX 1660 6 GB NVIDIA GTX 1650 4 GB NVIDIA RTX 5090 Laptop 24 GB NVIDIA RTX 5080 Laptop 16 GB NVIDIA RTX 5070 Ti Laptop 12 GB NVIDIA RTX 5070 Laptop 8 GB NVIDIA RTX 5060 Laptop 8 GB NVIDIA RTX 5050 Laptop 8 GB NVIDIA RTX 4090 Laptop 16 GB NVIDIA RTX 4080 Laptop 12 GB NVIDIA RTX 4070 Laptop 8 GB NVIDIA RTX 4060 Laptop 8 GB NVIDIA RTX 4050 Laptop 6 GB NVIDIA RTX 3080 Ti Laptop 16 GB NVIDIA RTX 3070 Ti Laptop 8 GB NVIDIA RTX 3070 Laptop 8 GB NVIDIA RTX 3060 Laptop 6 GB NVIDIA RTX 3050 Ti Laptop 4 GB NVIDIA RTX 3050 Laptop 4 GB AMD RX 7900 XTX 24 GB AMD RX 7900 XT 20 GB AMD RX 7800 XT 16 GB AMD RX 7600 XT 16 GB AMD RX 6950 XT 16 GB AMD RX 6800 XT 16 GB AMD RX 6800 16 GB AMD RX 7700 XT 12 GB AMD RX 6750 XT 12 GB AMD RX 6700 XT 12 GB AMD RX 7600 8 GB AMD RX 6650 XT 8 GB AMD RX 6600 8 GB Intel Arc A770 16 GB Intel Arc B580 12 GB Intel Arc A750 8 GB
VERIFIABLE DATA

Numbers you can trust

Want the details? Read exactly how we calculate every number.

How to check if your PC can run an AI model

Running a large language model locally means loading it entirely into your computer's memory — ideally your graphics card's VRAM, which is far faster than system RAM. Whether a given model fits depends on three things: its size, the quantization you pick, and how long a context you run. Here's how to find your answer in under a minute.

STEP 1

Search the model

Type a model name above — Llama, Qwen, Mistral, DeepSeek, Gemma and thousands more in GGUF format. You'll land on a page with its real memory needs per quantization.

STEP 2

Enter your hardware

Detect your GPU automatically, or pick your graphics card from the list. The tool compares each quantization against your VRAM and system RAM.

STEP 3

Read the verdict

Each quantization is marked fits in VRAM, runs with offload (slower), or insufficient — so you pick the best quality your machine can hold.

What decides whether a model fits?

Weights & quantization

Quantization shrinks a model by storing its weights at fewer bits. An 8-bit copy is roughly half the size of 16-bit; 4-bit halves it again, with a small quality cost. Picking the right level is usually what makes a model fit. Quantization explained →

VRAM vs system RAM

A model held entirely in GPU VRAM runs fast. If it's too big, part spills over to system RAM ("offloading") — it still works, but slows down. Nothing fitting in VRAM and RAM combined won't run at all. How much VRAM? · How much RAM?

Context length

The longer the conversation, the more memory the KV cache needs on top of the weights. Modern designs like grouped-query, hybrid and latent attention keep this cost low — which is why our figures come from each model's real architecture.

What can each GPU run?

As a rough starting point, here's the largest model size that typically fits at a balanced 4-bit quantization. Your exact result depends on the model and context — check your own card for precise numbers.

VRAMTypically runs (4-bit)Example cards
8 GBup to ~8B modelsRTX 3050, 4060
12 GBup to ~13B modelsRTX 3060, 4070
16 GBup to ~22B modelsRTX 4060 Ti, 5070 Ti
24 GBup to ~34B modelsRTX 3090, 4090
32 GBup to ~49B, or a 70B at low bitsRTX 5090

See the best model for your exact VRAM → · Browse all graphics cards →

Frequently asked questions

Do I need a graphics card to run an AI model locally?

Not strictly — small models run on CPU and system RAM alone, just slowly. A GPU with enough VRAM is what makes local models genuinely fast, because the whole model can stay in fast graphics memory. This tool shows both cases: fully in VRAM, or partly offloaded to RAM.

What is GGUF, and why does it matter?

GGUF is the file format used by llama.cpp, Ollama and LM Studio to run models locally. Each GGUF file is a specific quantization of a model, so its size on disk closely tracks the memory it needs. We read those real file sizes rather than estimating.

Which quantization should I choose?

Pick the highest-quality quantization that still fits your VRAM. Q4_K_M is a popular balance — most of the quality at roughly half the memory of 8-bit. If you have room to spare, Q5 or Q6 add a little more; if you're tight, a smaller quant still runs. Full breakdown →

How accurate are these numbers?

Weight sizes, parameter counts and KV-cache math are exact, computed from each model's published files and configuration. The only figure we label as an estimate is inference speed, which depends on your specific setup. See our methodology.

What tools do I use to actually run the model?

Once you know a model fits, Ollama and LM Studio are the easiest ways to download and run it. This site tells you what will fit; those tools do the running.