Views
No views yet
model.safetensorsconfig.jsonrecipe.yamltokenizer.jsontokenizer_config.jsonprocessor_config.jsonpreprocessor_config.jsonvideo_preprocessor_config.jsongeneration_config.jsonchat_template.jinjavllm==0.17.1transformers==5.3.0vllm patch for the Blackwell/TMA issue may still be required if you encounter the same problem.vllm build does not already include that fix, apply the one-line patch.UTILS_FILE=$(python -c "import vllm, os; print(os.path.join(os.path.dirname(vllm.__file__), 'model_executor/layers/fla/ops/utils.py'))") && sed -i 's/is_nvidia and torch.cuda.get_device_capability(0)\[0\] >= 9/is_nvidia and 9 <= torch.cuda.get_device_capability(0)[0] < 12/' "$UTILS_FILE"1CUDA_DEVICE_ORDER=PCI_BUS_ID CUDA_VISIBLE_DEVICES=0 \
2vllm serve ShinePixelOrg/Qwopus3.5-27B-v3-NVFP4 \
3 --max-model-len 262144 \
4 --gpu-memory-utilization 0.85 \
5 --kv-cache-dtype fp8_e4m3 \
6 --max-num-seqs 1 \
7 --skip-mm-profiling \
8 --reasoning-parser qwen3 \
9 --speculative-config '{"method":"mtp","num_speculative_tokens":1}'1CUDA_DEVICE_ORDER=PCI_BUS_ID CUDA_VISIBLE_DEVICES=0 \
2vllm serve ShinePixelOrg/Qwopus3.5-27B-v3-NVFP4 \
3 --max-model-len 262144 \
4 --gpu-memory-utilization 0.85 \
5 --kv-cache-dtype fp8_e4m3 \
6 --max-num-seqs 1 \
7 --skip-mm-profiling \
8 --reasoning-parser qwen3GET /health returned 200GET /v1/models returned the modelPOST /v1/chat/completions returned 200| Precision | Layers |
|---|---|
| FP8 W8A8 | DeltaNet in_proj_qkv, in_proj_z, out_proj; softmax q_proj/k_proj/v_proj; MLP down_proj |
| NVFP4 W4A4 | softmax o_proj; MLP gate_proj/up_proj |
| BF16 | lm_head, embed_tokens, DeltaNet in_proj_a/in_proj_b, norms, visual encoder, MTP sidecar |
model_type=qwen3_564 text layersfull_attention_interval=4mtp_num_hidden_layers=1max_position_embeddings=262144pip install -U vllm transformers1vllm serve ShinePixelOrg/Qwopus3.5-27B-v3-NVFP4 \
2 --max-model-len 262144 \
3 --gpu-memory-utilization 0.85 \
4 --kv-cache-dtype fp8_e4m3 \
5 --max-num-seqs 1 \
6 --skip-mm-profiling \
7 --reasoning-parser qwen3 \
8 --speculative-config '{"method":"mtp","num_speculative_tokens":1}'1vllm serve ShinePixelOrg/Qwopus3.5-27B-v3-NVFP4 \
2 --max-model-len 262144 \
3 --gpu-memory-utilization 0.85 \
4 --kv-cache-dtype fp8_e4m3 \
5 --max-num-seqs 1 \
6 --skip-mm-profiling \
7 --reasoning-parser qwen31from transformers import AutoTokenizer, AutoModelForCausalLM
2import torch
3
4model = AutoModelForCausalLM.from_pretrained(
5 "ShinePixelOrg/Qwopus3.5-27B-v3-NVFP4",
6 torch_dtype=torch.bfloat16,
7 device_map="auto",
8 trust_remote_code=True,
9)
10
11tokenizer = AutoTokenizer.from_pretrained(
12 "ShinePixelOrg/Qwopus3.5-27B-v3-NVFP4",
13 trust_remote_code=True,
14)| Framework | Supported | Notes |
|---|---|---|
| vLLM >= 0.17.0 | Yes | Verified locally with vllm==0.17.1 |
| transformers >= 5.3.0 | Yes | Direct loading works with device_map="auto" |