Krasis LLM Runtime Shows 8.9x Prefill and 4.7x Decode Speed Improvements Over Llama.cpp

Performance Benchmarks
Krasis demonstrates significant performance improvements over llama.cpp when running on equivalent hardware. On a single 5090 GPU limited by PCIE 4.0, Krasis shows:
- 8.9x faster prefill speed
- 4.7x faster decode speed
Specific benchmark results for Qwen3-Coder-Next show Krasis running on a single 16GB 5080 GPU achieving:
- 1801 tokens/sec prefill
- 26.8 tokens/sec decode
This outperforms llama.cpp running on a 32GB 5090 GPU with layer offloading.
Architecture Changes
The latest version of Krasis has dropped the dual-format system and now runs both prefill and decode entirely on GPU with different optimization strategies for each phase. This architectural change results in:
- Reduced CPU requirements
- Less dependency on system RAM memory speed
- Lower overall system RAM usage (now needs only enough for the quantized model plus some overhead, compared to the prior 2.5x model requirement)
Supported Models and Performance
Current supported models with their performance on a single 5090 GPU (PCIE 4.0) are:
- Qwen3.5-35B-A3B: 4475 prefill, 109.1 decode
- Qwen3-Coder-Next: 3560 prefill, 70.3 decode
- Qwen3.5-122B-A10B: 2897 prefill, 27.7 decode
- Qwen3-235B-A22B: 2124 prefill, 9.3 decode
Future Development Plans
The developer plans to:
- Add support for Nvidia Nemotron models, specifically targeting Nemotron Super for consumer GPUs like the 5080
- Potentially support larger Nemotron models when released
- Expand IDE and tooling support for Opencode and Aider
Current Features
Krasis currently offers:
- OpenAI-compatible server
- Single-line installation
- Availability on GitHub
📖 Read the full source: r/LocalLLaMA
👀 See Also

Smriti: A Git-like system for managing LLM reasoning state to prevent conversation drift
Smriti is an open-source tool that lets developers save, restore, branch, and compare reasoning states in LLM conversations to prevent drift. It treats interactions as state rather than chat history, allowing clean rollbacks and alternative exploration without contamination.

Building a Self-Improving Knowledge System with Claude Code and Obsidian
A developer built a 25-tool system that gives Claude Code persistent memory through semantic search, knowledge graphs, and spaced repetition over an Obsidian vault. The system indexes content with bge-m3 embeddings, detects contradictions, auto-prunes stale notes, and generates Obsidian Canvas maps automatically.

Memento v1.0: Local Persistent Memory for AI Coding Agents
Memento v1.0 is a fully local memory layer for AI coding agents that runs embeddings, storage, and search on your machine with no cloud dependencies. It uses all-MiniLM-L6-v2 embeddings, HNSW indexing, and supports multiple IDEs with 17 MCP tools.

NVIDIA Announces NemoClaw Agent Platform with Privacy Controls
NVIDIA has launched NemoClaw, an agent platform that lets users install Nimotron models and the Open Shell runtime with a single command while adding privacy and security controls for autonomous agents.