File size: 338 Bytes
ccc7068 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# **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/scripts
./run-ci-build-wheel
``` |