I ran Qwen3.8-27B locally on an RTX 5060 Ti 16GB A developer released a deployment package for running the Qwen3.8-27B coding agent locally on an RTX 5060 Ti 16GB GPU, achieving task completion in about 14m20s on a Go repository test. The package uses llama.cpp with quantized KV cache and MTP, supporting OpenAI-compatible clients like Codex and Pi, plus an optional Anthropic adapter for Claude Code. A small, reproducible deployment package for running a quantized Qwen3.8 27B coding agent with llama.cpp, MTP, and quantized KV cache. It supports direct OpenAI-compatible clients such as Codex and Pi, plus an optional Anthropic adapter for Claude Code. The useful question is not “how many tokens per second?” It is whether an agent can inspect a real repository, follow a design document, change code, and pass tests without wasting turns or overflowing memory. This package is based on open-source work and hands-on local testing. The reference machine was an RTX 5060 Ti with 16GB VRAM and 32GB system RAM. | Component | Detected configuration | |---|---| | CPU | AMD Ryzen 9 9950X, 16 cores / 32 threads, x86 64, 1 socket | | System memory | 32GB total, 2 x 16GB DDR5, 6000 MT/s configured speed | | GPU | NVIDIA GeForce RTX 5060 Ti, 16311 MiB VRAM, compute capability 12.0 | | NVIDIA software | Driver 595.71.05, CUDA 13.2 | | GPU power limit | 180W | | Inference host | Linux x86 64, Docker, llama.cpp CUDA server | The GPU status snapshot taken while the model was serving showed about 51% utilization and 15767 MiB of VRAM in use. Utilization and free VRAM are workload-dependent; they are included only to make the measurement context clear. - Download the exact main and draft GGUF files from the model page. Do not convert them in the setup step. - Put both files under one model directory on the GPU host. - Override the deployment variables and start the server: export MODEL DIR=/srv/models/Qwen3.8-27B-GGUF export CONTEXT=81920 export HOST PORT=8024 bash start-qwen38-27b-5060ti.sh The tested default uses one request slot, q4 0 KV cache, one CPU-resident MTP draft, Flash Attention, reasoning disabled, and --n-cpu-ffn 4 . A CUDA image mirror can be supplied with LLAMA IMAGE when the default registry is unavailable. Use N CPU FFN=0 for the no-offload comparison or N CPU FFN=8 for the larger-offload comparison. - Pi or Codex: http://