Tag: #model-serving
Writing on GPUs, LLMs, MLOps, Kubernetes — and mindset · 27 posts
MLOps Platforms 2026 Deep Dive — MLflow, Kubeflow, W&B, Vertex AI, SageMaker, Databricks, BentoML, Ray, Modal, Hugging Face
A side-by-side look at 30+ MLOps platforms in May 2026. MLflow 3, Kubeflow 1.10, Weights & Biases, Comet, Neptune.ai, ClearML, Vertex AI, SageMaker, Azure ML, Databricks ML + Mosaic AI, Hugging Face Inference Endpoints,
2026-05-16 · 17 min read #mlops#mlflow#kubeflow#weights-and-biases#vertex-aiLLM Serving & Local Inference in 2026 — vLLM / llama.cpp / MLX / Ollama / LM Studio / SGLang / TGI Deep Dive
A map of the 2026 LLM serving and inference landscape. Datacenter camp (vLLM, SGLang, TGI, Triton, TensorRT-LLM), local camp (llama.cpp, MLX, llamafile, Ollama, LM Studio, GPT4All), emerging camp (KTransformers, MLC LLM,
2026-05-16 · 25 min read #llm#model-serving#inference#vllm#llama-cppMLOps Complete Guide — Model Serving, Feature Store, Drift, A/B Testing, GPU Economics (Season 2 Ep 7, 2025)
Training a model and running it in production are completely different games. Serving (TorchServe, Triton, vLLM, TGI), Feature Stores (Feast, Tecton), training infra (Ray, Determined), experiment tracking (MLflow, W&B),
2026-04-15 · 12 min read #mlops#model-serving#feature-store#drift-detection#ab-testingComplete LLM Inference Optimization Guide 2025: vLLM, TensorRT-LLM, KV Cache, Speculative Decoding
Everything about LLM inference optimization! vLLM (PagedAttention), TensorRT-LLM (FP8/INT4), KV Cache management, Speculative Decoding, Continuous Batching, FlashAttention, Quantization (GPTQ/AWQ/GGUF), Model Serving (Tr
2026-04-14 · 25 min read #llm-inference#vllm#tensorrt-llm#kv-cache#speculative-decodingThe Complete MLOps & AI Model Deployment Guide — From Training to Serving and Monitoring
The entire process of training, deploying, and operating AI models. Everything about MLOps from MLflow, Kubeflow, model serving, A/B testing, to drift detection.
2026-04-13 · 17 min read #mlops#ai#deployment#model-serving#monitoringFeature Store & MLOps Pipeline Complete Guide 2025: Feast, Feature Engineering, Model Serving
Everything about Feature Store and MLOps! Feature Store architecture (Feast/Tecton/Hopsworks), Feature Engineering patterns, MLOps pipeline (training → validation → deployment → monitoring), Model Serving (BentoML/Seldon
2026-04-13 · 19 min read #feature-store#mlops#feast#feature-engineering#model-servingGoogle TPU Deep Dive: How Systolic Arrays Solve Matrix Multiplication Perfectly
A complete technical breakdown of how Google's Systolic Array achieves extreme efficiency for matrix multiplication. From INT8 inference and bfloat16, to XLA compiler optimizations and TPU Pod distributed inference - wit
2026-03-18 · 15 min read #tpu#google#systolic-array#model-serving#jaxRunning LLMs on Apple Silicon: Inside M4/M5 Architecture for AI Inference
A deep technical dive into Apple M4/M5 Unified Memory Architecture and its implications for LLM inference. Covers the Neural Engine, MLX framework, llama.cpp Metal backend, real benchmarks, and an honest comparison with
2026-03-18 · 14 min read #apple-silicon#m5#model-serving#unified-memory#mlxComplete LLM Serving Optimization Guide: KV Cache, PagedAttention, and Quantization
A complete engineering deep dive into LLM serving optimization. From the KV cache memory crisis to the virtual-memory revolution of PagedAttention, continuous batching, speculative decoding, quantization techniques, and
2026-03-18 · 30 min read #model-serving#kv-cache#paged-attention#vllm#quantizationcuDNN Internals: Why Deep Learning Operations Fly on GPU
From im2col transformation to Winograd algorithm, FlashAttention tiling, and TensorRT INT8 quantization. A complete breakdown of how cuDNN makes deep learning operations 10-100x faster than naive CUDA.
2026-03-18 · 13 min read #cudnn#gpu#deep-learning-optimization#convolution#model-servingHow Matrices Fly on GPU: Complete Deep Dive from GEMM to FlashAttention
Matrix multiplication accounts for over 80% of deep learning compute. This post dissects every layer of optimization from naive O(n³) code to cache blocking, cuBLAS, Tensor Cores, and the IO-aware revolution of FlashAtte
2026-03-18 · 15 min read #gemm#matrix-multiplication#flash-attention#gpu#parallel-computingAMD GPU & ROCm Deep Dive: Can It Challenge CUDA for LLM Inference?
A thorough technical analysis of AMD MI300X with 192GB HBM3, the ROCm software stack, and HIP programming model. Includes real LLM serving benchmarks with vLLM and llama.cpp, and an honest assessment of strengths and wea
2026-03-18 · 14 min read #amd#rocm#gpu#mi300x#model-servingAI Model Serving and Inference Optimization Complete Guide: vLLM, TensorRT, Triton, Ollama
The complete guide to efficiently serving AI models in production. Master vLLM, TensorRT, NVIDIA Triton Inference Server, Ollama, quantization (INT8/INT4), batch processing, and latency optimization with real-world examp
2026-03-17 · 19 min read #mlops#model-serving#vllm#tensorrt#tritonLLMOps Platform Architecture Guide: Model Deployment, Monitoring, and A/B Testing
A comprehensive guide to designing and implementing an LLMOps platform. Covers vLLM/TGI-based model serving, token usage/latency/quality monitoring, prompt version management, A/B testing framework, guardrail integration
2026-03-13 · 14 min read #ai-platform#llmops#model-serving#monitoring#ab-testingLLM Inference Serving Framework Comparison: TensorRT-LLM vs vLLM vs SGLang Production Deployment Strategy
A comparison of LLM inference serving frameworks — TensorRT-LLM, vLLM, and SGLang — with production deployment strategies.
2026-03-12 · 21 min read #llm#inference#tensorrt-llm#vllm#sglangKServe Model Serving Complete Guide: InferenceService, Canary Deployment, Transformer, and InferenceGraph Production Operations
Covers Kubernetes-based model serving with KServe. Model deployment with InferenceService CRD, safe rollouts with Canary strategy, pre/post-processing pipelines with Transformer, and DAG-based composite inference with In
2026-03-12 · 17 min read #ai-platform#kserve#model-serving#kubernetes#inference-graphRay Serve Model Serving Platform Building Guide — Autoscaling, Multi-Model, and Production Deployment
A comprehensive overview of Ray Serve architecture, LLM model serving deployment, autoscaling, multi-model patterns, and KubeRay operations with practical code examples.
2026-03-09 · 26 min read #ai-platform#ray-serve#model-serving#kuberay#mlopsNVIDIA Triton Inference Server Production Guide: GPU Model Serving Optimization Strategies
A guide to GPU model serving optimization with NVIDIA Triton Inference Server. Covers Dynamic Batching, Model Ensemble, TensorRT integration, multi-model serving, Kubernetes deployment, performance profiling, and product
2026-03-08 · 29 min read #ai-platform#triton#inference-server#gpu#model-servingComplete Guide to vLLM Production Serving Optimization: From PagedAttention to Kubernetes Deployment
A comprehensive production-focused guide covering vLLM core architecture including PagedAttention, optimization techniques such as Continuous Batching, Tensor Parallelism, Speculative Decoding, and Prefix Caching, detail
2026-03-07 · 18 min read #llm#vllm#paged-attention#continuous-batching#tensor-parallelismvLLM PagedAttention Production Serving Optimization and Inference Engine Comparison Guide
A comprehensive LLM serving guide covering vLLM PagedAttention algorithm, production deployment, performance tuning, SGLang/TensorRT-LLM comparison, and Kubernetes integration.
2026-03-06 · 22 min read #llm#vllm#paged-attention#model-serving#2026-03