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

Open-Source Job Search Framework Built in Claude Code
A developer created an open-source job search framework in Claude Code that handles structured self-profiling, automated job portal scraping, fit evaluation, and a drafter-reviewer agent pipeline for tailored applications. The system stops before submission and requires manual review.

Claude Code hooks prevent Chrome tab interference between multiple sessions
A developer created three hooks (session-start, capture-tab-id, enforce-tab-id) that pin each Claude Code session to its own Chrome tab, preventing sessions from accidentally accessing other sessions' tabs during test runs and form fills.

2026 Hermes Agent Alternatives Roundup: Self-Hosted Options from OpenClaw to memU Bot
A developer who has been running Hermes since launch tested every self-hosted and managed alternative after the ClawHub security mess. Key findings: OpenClaw (370k stars) but 9 CVEs in 4 days and ~20% malicious packages; TrustClaw rebuilt with OAuth/sandboxing; nanobot at ~4K lines Python with MCP; memU Bot with unique structured memory. Managed options include Perplexity Computer (19 models, $200/mo), Claude Cowork (opens real Mac apps), and KimiClaw (40GB RAG, locked to K2.5, Chinese data law). Full roundup at source.

Claude Debugs and Fixes Its Own MCP Filesystem Server UNC Path Bug on Windows
A developer used Claude Opus to diagnose and patch a bug in the MCP Filesystem Server where UNC network share paths on Windows failed for subdirectory operations. The fix addresses a path validation issue that prevented access to files and folders within UNC shares.