danielhanchen commited on
Commit
1c3f884
·
verified ·
1 Parent(s): 24ccf90

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -56,9 +56,10 @@ Read all benchmarks in our [NVFP4 blog](https://unsloth.ai/docs/models/qwen3.6#n
56
 
57
  To install vLLM in a separate venv:
58
  ```shell
59
- uv venv myenv --python 3.12
60
- uv pip install --python myenv/bin/python \
61
- "vllm==0.24.0" "nvidia-cutlass-dsl==4.5.2" --torch-backend=auto
 
62
  ```
63
  Then to serve the 35B Fast variant:
64
  ```
@@ -78,8 +79,7 @@ Also do **NOT** use the Marlin backend since it's 2x slower - use the native vLL
78
  You must use the below or you will get **2x slower** inference!
79
  ```shell
80
  export CUTE_DSL_ARCH=sm_121a
81
- vllm serve unsloth/Qwen3.6-35B-A3B-NVFP4-Fast \
82
- --moe-backend flashinfer_b12x --linear-backend flashinfer_b12x
83
  ```
84
 
85
  ## Multi-Token Prediction (MTP)
 
56
 
57
  To install vLLM in a separate venv:
58
  ```shell
59
+ uv venv unsloth-nvfp4-env --python 3.13
60
+ source unsloth-nvfp4-env/bin/activate
61
+ uv pip install "vllm>=0.25.0" "flashinfer-python>=0.6.13" "nvidia-cutlass-dsl>=4.5.2" \
62
+ --torch-backend=auto
63
  ```
64
  Then to serve the 35B Fast variant:
65
  ```
 
79
  You must use the below or you will get **2x slower** inference!
80
  ```shell
81
  export CUTE_DSL_ARCH=sm_121a
82
+ vllm serve unsloth/Qwen3.6-35B-A3B-NVFP4-Fast --moe-backend flashinfer_b12x
 
83
  ```
84
 
85
  ## Multi-Token Prediction (MTP)