Skip to main content
Qwen3.6 27B is a dense model from Qwen with a 262,144 token native context window and an Apache 2.0 license. This guide uses a tested RTX A6000 setup with a GGUF quantization, 32K context, full GPU offload, and a public OpenAI-compatible endpoint. The tested path uses Unsloth’s Qwen3.6 27B GGUF files with the current llama.cpp CUDA Docker image. For H100 serving, use the official Qwen3.6 27B FP8 checkpoint with vLLM.
Ollama is a separate quick-start path: ollama run qwen3.6:27b pulls Ollama’s official Q4_K_M build automatically. The screenshots and API commands below use llama.cpp instead, because that path makes the GGUF file, context length, server port, and OpenAI-compatible endpoint explicit.

Tested Setup

The following configuration was used for the screenshots and command output in this guide. With these settings, Qwen3.6 27B runs cleanly on a single A6000 as a 32K-context endpoint. The server command uses --parallel 1 to start with one request slot; this controls request concurrency, not the number of GPUs.

Scale Up Options

Use the A6000 path above when you want the exact configuration tested in this guide. Move to a larger GPU when you want to validate a higher-quality quantization, more simultaneous requests, or vLLM serving.

Tested Generation Parameters

Qwen recommends different sampling settings for thinking and non-thinking use. The tested A6000 commands in this guide use non-thinking mode: For non-thinking prompts, include /no_think at the start of the user message and set --reasoning off when you run llama.cpp server.

Create The Instance

Create an A6000 instance with enough disk space for the llama.cpp Docker image and the GGUF file:
Create a Thunder Compute A6000 instance For an A100 or H100 run, keep the same shape but change the GPU. Available vCPU choices vary by current inventory, so use tnr create interactively if a one-line command needs adjustment.
Connect to the instance:

Download The A6000 GGUF

Inside the instance, download the UD-Q4_K_XL GGUF. This is the tested A6000 fit.
Download Qwen3.6 27B GGUF For A100, replace the filename and URL with one of these:

Run A Direct Prompt

Set a short prompt for a direct model-load smoke test:
Run the model with full GPU offload and the tested 32K context:
Run a direct prompt with llama.cpp This direct run is only a quick check that the GGUF loads and generates on the selected GPU. If you are using a different GGUF file, update the -m path. If the command runs out of memory, lower -c first. If it succeeds and you need more context, raise -c and test again before turning the endpoint over to users.

Start An OpenAI-Compatible API

Start a persistent llama.cpp server on port 8000:
Check that the server is ready:
The server is ready when /health returns {"status":"ok"}. You can use /v1/models as a quick check that the model is loaded. Start an OpenAI-compatible llama.cpp server Expose the endpoint through Thunder Compute port forwarding:
Your public HTTPS endpoint will use this format:
Call the model from your local machine:
Call Qwen3.6 through the public Thunder Compute URL You can also point an OpenAI-compatible client at the same URL:

H100 FP8 Serving With vLLM

Use this path when you want higher-throughput serving on H100 and do not need a GGUF quantization.
H100 is the preferred GPU for this FP8 path. The command below was also verified on a single A100 80 GB instance as an availability fallback.
Start with the same practical 32K context length, then raise --max-model-len after the server is stable:
The default chat-template kwargs keep this guide in non-thinking mode. --enforce-eager keeps the first smoke test from spending extra startup time on CUDA graph capture. Remove it later when you are tuning throughput. Forward port 8000 the same way:
Then call:
Qwen’s official vLLM example uses a 262,144 token maximum context. That is useful for long-context workloads, but start with 32K for a first smoke test so model loading, routing, and port forwarding are easy to debug.

Clean Up

Stop the server:
Exit the instance and delete it when you are done:
Billing stops when the instance is deleted.

References