| # **Lbx binary pkg** |
| ## **vllm.whl** |
| ``` |
| cd vllm/ |
| CUDA_VISIBLE_DEVICES=11 python setup.py bdist_wheel |
| ``` |
| ## **sglang.whl** |
| ``` |
| cd sglang/python |
| python -m build |
| ``` |
| ## **flash_attn.whl** |
| ``` |
| cd flash-attention |
| CUDA_VISIBLE_DEVICES=11 python setup.py bdist_wheel |
| ``` |
| ## **flashinfer.whl** |
| ``` |
| cd flashinfer/python/ |
| FLASHINFER_BUILD_VERSION="999.0.4+cu124torch2.3" TORCH_CUDA_ARCH_LIST="8.0 8.9" python -m build --no-isolation |
| |
| The "-Wno-switch-bool" parameter needs to be removed in setup.py. nvcc 12.4 does not have this option. |
| ``` |