diff options
Diffstat (limited to 'deploy.sh')
-rw-r--r-- | deploy.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..a08351e --- /dev/null +++ b/deploy.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +rm -rf dist build +make clean +CUDA_HOME=/usr/local/cuda-10.2 make +CUDA_VERSION=102 python -m build +python -m twine upload --repository testpypi dist/* --verbose + +rm -rf dist build +make clean +CUDA_HOME=/usr/local/cuda-11.1 make +CUDA_VERSION=111 python -m build +python -m twine upload --repository testpypi dist/* --verbose |