GGUF Quantization Explained: Choosing the Right Format for Local AI

GGUF Quantization Explained: Choosing the Right Format for Local AI TL;DR # Check quantization of an Ollama model ollama show llama3.2:3b --modelfile | grep -i quant # Inspect a GGUF file directly python3 -c "from gguf import GGUFReader; r = GGUFReader('model.gguf'); print([kv for kv in r.fields])" # Or use llama.cpp's built-in info ./llama-quantize --help # Convert and quantize with llama.cpp ./llama-quantize input.gguf output-Q4_K_M.gguf Q4_K_M GGUF is the standard file format for running quantized LLMs locally. Quantization reduces model size and VRAM usage by representing weights with fewer bits. The tradeoff is a small reduction in output quality. Choosing the right quantization level depends on your available VRAM, the model size, and your quality requirements. ...

April 6, 2026 · 8 min · Local AI Ops

Local LLM vs OpenAI API: Cost Calculator and Break-Even Analysis

Local LLM vs OpenAI API: Cost Calculator and Break-Even Analysis TL;DR A local AI server (RTX 3090 + system, ~$1,400) pays for itself versus OpenAI API spending within 3-12 months depending on your usage volume. At 500 queries per day, local hardware breaks even in about 4 months against GPT-4o pricing. At 1,000 queries per day, break-even drops to under 2 months. ...

April 2, 2026 · 11 min · Local AI Ops

Multi-GPU Ollama Setup: Running 70B Models on Dual GPUs

Multi-GPU Ollama Setup: Running 70B Models on Dual GPUs TL;DR A single 24GB GPU cannot run a 70B parameter LLM. The model requires approximately 40GB of VRAM at Q4 quantization. Two GPUs solve this by splitting the model across both cards. This guide covers the hardware, configuration, and performance expectations for running 70B models on dual RTX 3090s with Ollama. ...

April 2, 2026 · 13 min · Local AI Ops

Running Local LLMs on AMD GPUs with ROCm and Ollama

Running Local LLMs on AMD GPUs with ROCm and Ollama TL;DR AMD GPUs are a viable alternative to NVIDIA for local LLM inference, particularly the RX 7900 XTX with 24GB VRAM. ROCm 6.x on Linux provides the software stack needed to run Ollama and llama.cpp with GPU acceleration. Performance is 15-30% lower than equivalent NVIDIA hardware, but AMD cards often cost significantly less. ...

April 2, 2026 · 11 min · Local AI Ops

RTX 4090 vs RTX 3090 for Local AI: Which GPU Should You Buy?

RTX 4090 vs RTX 3090 for Local AI: Which GPU Should You Buy? TL;DR Both GPUs have 24GB VRAM, which is the most important spec for local AI. The RTX 4090 is 40-70% faster for inference but costs roughly twice as much as a used RTX 3090. For most people building a local AI server, the 3090 is the better buy. The 4090 makes sense only when you need maximum single-card speed or plan to do significant fine-tuning work. ...

April 2, 2026 · 10 min · Local AI Ops

Nvidia Vera CPU: Self-Hosted AI with Ollama

TL;DR Nvidia’s Vera CPU architecture brings ARM-based processing designed specifically for AI workloads to self-hosted environments. Unlike traditional x86 chips, Vera integrates neural processing units directly into the CPU die, making it particularly effective for running multiple Ollama instances simultaneously without GPU bottlenecks. For homelab operators, this means you can run agent frameworks like AutoGen or LangChain with local LLMs while maintaining responsive system performance. A typical setup might run three Ollama instances – one for code generation with codellama:13b, another for general tasks with llama2:13b, and a third for function calling with mistral:7b – all on a single Vera-based system without thermal throttling. ...

March 17, 2026 · 9 min · Local AI Ops

RTX 3090 for AI: Best Value GPU for Local LLM Hosting

RTX 3090 for AI: Best Value GPU for Local LLM Hosting TL;DR The NVIDIA RTX 3090 is the best price-to-performance GPU for local AI work in 2026. At $700-900 used, it delivers 24GB of VRAM — the same amount as GPUs costing 2-3x more. That 24GB is the critical spec: it determines which models you can run and how many customers you can serve. ...

February 22, 2026 · 6 min · Local AI Ops

GPU vs CPU Inference with Ollama: Performance Guide

GPU vs CPU Inference with Ollama: Performance Guide TL;DR GPU inference with Ollama delivers dramatically faster token generation compared to CPU-only setups on consumer hardware. The exact speedup depends on your specific GPU, CPU, and model, but the difference is immediately noticeable. The performance gap widens with larger models. Key takeaways for your hardware decisions: ...

February 21, 2026 · 9 min · Local AI Ops

Best Local LLMs for 8GB RAM: Llama, Mistral, Phi

Best Local LLMs for 8GB RAM: Llama, Mistral, Phi TL;DR Running local LLMs on 8GB RAM systems is entirely feasible in 2026, but requires careful model selection and quantization strategies. Llama 3.2 3B (Q4_K_M quantization) delivers the best balance of capability and efficiency, using approximately 2.3GB RAM while maintaining strong reasoning abilities. Mistral 7B (Q3_K_M) pushes boundaries at 3.8GB RAM, offering superior performance for coding tasks but requiring aggressive quantization. Phi-3 Mini (3.8B parameters, Q4_K_S) sits in the middle at 2.1GB, excelling at structured outputs and JSON generation. ...

February 21, 2026 · 8 min · Local AI Ops
Buy Me A Coffee