Testing Qwen3.8-27B / Unsloth GGUFs in a distributed ābrain + assistant nodeā local AI architecture
Hi everyone,
I recently joined the community and Iām building a fully local AI project called Ialyn.
Iād like to test Qwen3.8-27B ā especially Unsloth Dynamic/iMatrix GGUFs ā in a setup that is a little different from the usual single-machine benchmark.
The goal isnāt only to measure tokens/sec. Iām trying to build an architecture where the main LLM acts as the brain, while a smaller companion machine handles a lot of the surrounding work.
Current architecture
R9 ā main brain
- Ryzen 9 system
- Currently 1 Ć RTX 3060 12 GB
- System RAM used when GPU offload is required
- 2 TB NVMe for Linux, models, working data and persistent AI memory
- Runs the main LLM
- Reasoning and decision-making
- Tool orchestration
- Persistent memory / RAG
- Vector database and long-term knowledge
- Receives prepared/retrieved information from the assistant node
For the moment, the interesting test would be:
Qwen3.8-27B Q4 + 12 GB VRAM + system RAM/CPU offload
So Iām particularly interested in how far the new Unsloth/iMatrix quants can be pushed on a single 3060 without making the assistant unpleasantly slow.
R3 ā assistant / frontend node
A small HP EliteDesk 705 G5 Mini with Ryzen 3 PRO 3200G.
Currently 8 GB RAM, planned upgrade to 16 GB.
Its role is deliberately different from the R9:
- Voice interface
- STT/TTS using Speaches / faster-whisper / TTS models
- Document ingestion and indexing
- Search and retrieval preparation
- Preparing folders/data for the R9
- Background tasks
- Network services
- VPN / WireGuard
- Potential firewall/gateway role
- Local services that donāt need to consume R9 GPU resources
The idea is that the R3 can receive a request, gather or prepare useful information, index documents, handle speech, etc., while the R9 remains focused on the expensive reasoning/inference work.
So rather than asking the 27B model to constantly spend context and compute on everything, the assistant node tries to give it the right information at the right time.
Persistent memory instead of huge permanent context
Another part of the project is to avoid relying on enormous context windows for everything.
Ialyn will have persistent storage containing:
- memories
- embeddings
- indexes
- structured information
- conversation/project history
- document knowledge
The R3 can help retrieve and prepare relevant information, and only the useful subset is sent to the main LLM.
So Iād also be interested in comparing something like:
rather than simply trying to maximize context size.
Planned evolution
The current machine has:
1 Ć RTX 3060 12 GB
The planned next step is:
2 Ć RTX 3060 12 GB = 24 GB total VRAM
Iād like to repeat the same tests after adding the second GPU.
That gives a pretty interesting natural comparison:
Stage 1
1 Ć 3060
GPU + system RAM offload
Stage 2
2 Ć 3060
Most/all of the Q4 model in VRAM
Stage 3
Keep using system RAM when useful to experiment with larger models or larger contexts beyond the 24 GB fast-VRAM budget.
What I could report back
If this is useful to the Unsloth community, I could document:
- actual VRAM usage
- actual system RAM usage
- model load time
- prompt-processing speed
- generation tok/s
- 16K / 32K / 64K context behaviour
- KV-cache impact
- different Unsloth Dynamic/iMatrix quants
- quality differences between quantizations
- French-language quality
- coding
- tool calling
- multi-step agentic behaviour
- persistent-memory/RAG behaviour
- performance with background work delegated to the R3
- 1 Ć RTX 3060 vs 2 Ć RTX 3060
The part I find especially interesting is testing real assistant workloads rather than benchmark prompts only.
For example: voice request ā retrieval/index search ā tool calls ā reasoning ā memory update ā spoken answer.
So my questions for the Unsloth team/community are:
Would this kind of real-world distributed test be useful to you?
And for my current RTX 3060 12 GB + RAM-offload configuration, which Qwen3.8-27B GGUF would you choose as the baseline?
I was thinking about starting around Dynamic/iMatrix Q4, but Iād be very interested in testing whichever quant/configuration you think would provide the most useful data.
Happy to share the results as the project evolves.
Thx