File size: 534 Bytes
ccc7068 24b8bdc ccc7068 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# **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.
``` |