Qwen 3.5 35B Running on 8GB VRAM with llama.cpp Configuration

✍️ OpenClawRadar📅 Published: March 27, 2026🔗 Source
Qwen 3.5 35B Running on 8GB VRAM with llama.cpp Configuration
Ad

Local Qwen 3.5 35B Setup on Limited VRAM

A developer on r/LocalLLaMA detailed their configuration for running the Qwen 3.5 35B model locally on hardware with 8GB of VRAM. They moved from using Antigravity (with a Google AI Pro plan) to local LLMs after hitting limits with the cloud service.

Hardware and Model Specifications

The setup uses a Lenovo Legion laptop with an i9-14900HX CPU (with E-cores disabled in BIOS, 32GB DDR5 RAM) and an RTX 4060m GPU with 8GB VRAM. The specific model is Qwen 3.5 35B A3B Heretic Opus (Q4_K_M GGUF).

Performance and llama.cpp Configuration

The developer reports getting approximately 700 tokens per second for prompt processing and 42 tokens per second for token generation with this setup. They provided their llama.cpp command-line arguments after testing:

-ngl 99 ^
--n-cpu-moe 40 ^
-c 192000 ^
-t 12 ^
-tb 16 ^
-b 4096 ^
--ubatch-size 2048 ^
--flash-attn on ^
--cache-type-k q8_0 ^
--cache-type-v q8_0 ^
--mlock
Ad

Workflow Integration

For their agentic workflow, they found Cline in VSCode to be the closest alternative to Antigravity. They use kat-coder-pro for Plan mode and qwen3.5 for Act mode within this setup. The developer is seeking feedback on whether this local configuration is better than sticking with Google Gemini 3 Flash in Antigravity, noting they prioritize smooth workflow over privacy concerns.

📖 Read the full source: r/LocalLLaMA

Ad

👀 See Also

Traversable Skill Graph for Persistent AI Agent Memory in Codebases
Tools

Traversable Skill Graph for Persistent AI Agent Memory in Codebases

A developer built a three-layer skill graph system that lives inside a codebase, enabling AI coding assistants to maintain persistent memory across sessions. The system uses progressive disclosure with self-directing instructions instead of monolithic context files.

OpenClawRadar
MCP Slim: Local Embedding Search for MCP Tools Reduces Context Bloat
Tools

MCP Slim: Local Embedding Search for MCP Tools Reduces Context Bloat

MCP Slim is a proxy that replaces full MCP tool catalogs with three meta-tools (search, describe, call), using local MiniLM embeddings for semantic search. It achieves 96% context window reduction and works offline without API keys.

OpenClawRadar
InsForge: Self-Hosted Postgres Backend with MCP Integration for AI Coding Agents
Tools

InsForge: Self-Hosted Postgres Backend with MCP Integration for AI Coding Agents

InsForge is an open-source, self-hosted backend alternative to Supabase that connects to Claude Code via MCP, allowing AI agents to see schema, policies, and service state. It includes PostgreSQL 16.4, PostgREST, Deno Runtime, auth, storage, and edge functions.

OpenClawRadar
Org Studio: Open-source dashboard for managing multi-agent AI teams
Tools

Org Studio: Open-source dashboard for managing multi-agent AI teams

Org Studio is an open-source dashboard that applies organizational design principles to coordinate teams of AI agents, with native support for both OpenClaw and Hermes Agent runtimes. It features team topology management, event-driven task boards, and cross-runtime communication where agents can mention each other in task comments.

OpenClawRadar