build.sh 261 Bytes
Newer Older
Woosuk Kwon's avatar
Woosuk Kwon committed
1
#!/bin/bash
Woosuk Kwon's avatar
Woosuk Kwon committed
2
3
# A simple build script for local testing.
# NOTE: This script is not used for the actual build process.
Woosuk Kwon's avatar
Woosuk Kwon committed
4

Woosuk Kwon's avatar
Woosuk Kwon committed
5
PYTORCH_VERSION="2.3.1"
Woosuk Kwon's avatar
Woosuk Kwon committed
6

Woosuk Kwon's avatar
Woosuk Kwon committed
7
8
9
pip install packaging ninja;
pip install torch==${PYTORCH_VERSION};
time python setup.py bdist_wheel --dist-dir=dist;