Views
No views yet
MAX_SEQUENCE_LENGTH has been increased from 2048 to 4096.no kernel available). To launch it you will need to compile the CUTLASS FP4 GEMM attention kernel for SM100 (RTX Pro 6000) or SM120 (RTX 5090). vLLM can do it automatically for you with the following configuration :docker run -ti --name Qwen3-Coder-30B-A3B-NVFP4 --gpus all -v '/srv/mountpoint_with_freespace/cache:/root/.cache' -e VLLM_USE_FLASHINFER_MOE_FP4=1 -p 8000:8000 "vllm/vllm-openai:nightly" "ig1/Qwen3-Coder-30B-A3B-Instruct-NVFP4" --served-model-name Qwen3-Coder-30B-A3B --enable-auto-tool-choice --tool-call-parser qwen3_coderVLLM_USE_FLASHINFER_MOE_FP4=1 environment variable instructing vLLM to compile the FP4 MoE kernel for your GPU architecture. The more CPU cores you have the more RAM you will need for the CUDA compilation.vllm/vllm-openai:nightly image (currently targeting 0.11.1rc4.dev6+g66a168a19) but once the v0.11.1 is out, that should not be necessary anymore.%USERPROFILE%/.wslconfig file to reduce the CPU cores given to WSL (on so the docker containers you will run) and increase its RAM allocation. Reducing the number of availables cores will reduce the number of compilation jobs in parallel and therefor reduce the RAM consumption. If you have 64GiB of RAM the following configuration will work (otherwise reduce it):1[wsl2]
2processors=6
3memory=50Gdocker run -ti --name Qwen3-Coder-30B-A3B-NVFP4 --gpus all -v 'E:\cache:/root/.cache' -e VLLM_USE_FLASHINFER_MOE_FP4=1 -p 8000:8000 "vllm/vllm-openai:nightly" "ig1/Qwen3-Coder-30B-A3B-Instruct-NVFP4" --served-model-name Qwen3-Coder-30B-A3B --gpu-memory-utilization 0.8 --max-model-len 75K --enable-auto-tool-choice --tool-call-parser qwen3_coderE:\cache to a folder of your linking. It will contains the huggingface download cache folder but also vLLM cache folder (mostly for torch compilation) but also a bunch of others folders you want to keep between different starts.gpu-memory-utilization and max-model-len have been adjusted to the 32GiB limit of the RTX 5090 and the fact that the host system still need a piece of it.Exec tab to check the compilation activity (and RAM usage !) with htop for example: apt update && apt install -y htop && htopCTRL-C the execution to stop the container.%USERPROFILE%/.wslconfig to restore your original values. Log out / Log in to start fresh with this new values.Qwen3-Coder-30B-A3B-NVFP4 container. You can now simply manage it using the UI when you need it.