diff options
author | Tim Dettmers <tim.dettmers@gmail.com> | 2021-10-05 19:16:20 -0700 |
---|---|---|
committer | Tim Dettmers <tim.dettmers@gmail.com> | 2021-10-05 19:16:20 -0700 |
commit | 7439924891496025edf60c9da6a782f362a50c70 (patch) | |
tree | 90476984d2c267f89232577a2ea40eb172387475 /deploy.sh |
Initial commit
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 |