diff options
author | Tim Dettmers <tim.dettmers@gmail.com> | 2021-10-07 09:55:28 -0700 |
---|---|---|
committer | Tim Dettmers <tim.dettmers@gmail.com> | 2021-10-07 09:55:28 -0700 |
commit | 20294dc0f23737f4b7241958b83d3b58e293337f (patch) | |
tree | dc024380485b0a3e829da6150bc7cb644fd71f75 /deploy_from_slurm.sh | |
parent | 5f95b5253f4936080479c909724601b342da1c18 (diff) | |
parent | 7923c4a06615456353476a6e07e9296f0c13f776 (diff) |
Merge branch 'main' of github.com:facebookresearch/bitsandbytes into main
Diffstat (limited to 'deploy_from_slurm.sh')
-rw-r--r-- | deploy_from_slurm.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/deploy_from_slurm.sh b/deploy_from_slurm.sh index e21f2e0..6357e1d 100644 --- a/deploy_from_slurm.sh +++ b/deploy_from_slurm.sh @@ -10,7 +10,7 @@ module load gcc/7.3.0 CUDA_HOME=/public/apps/cuda/9.2 make CUDA_VERSION=92 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda @@ -21,7 +21,7 @@ module load cuda/10.0 CUDA_HOME=/public/apps/cuda/10.0 make cuda10x CUDA_VERSION=100 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda module unload gcc module load gcc/8.4 @@ -33,7 +33,7 @@ module load cuda/10.1 CUDA_HOME=/public/apps/cuda/10.1 make cuda10x CUDA_VERSION=101 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -43,7 +43,7 @@ module load cuda/10.2 CUDA_HOME=/public/apps/cuda/10.2/ make cuda10x CUDA_VERSION=102 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda @@ -54,7 +54,7 @@ module load cuda/11.0 CUDA_HOME=/public/apps/cuda/11.0 make cuda110 CUDA_VERSION=110 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -64,7 +64,7 @@ module load cuda/11.1 CUDA_HOME=/public/apps/cuda/11.1 make cuda11x CUDA_VERSION=111 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -74,7 +74,7 @@ module load cuda/11.2 CUDA_HOME=/public/apps/cuda/11.2 make cuda11x CUDA_VERSION=112 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda rm -rf dist build @@ -82,5 +82,5 @@ make clean make cleaneggs CUDA_HOME=/private/home/timdettmers/git/autoswap/local/cuda-11.3 make cuda11x CUDA_VERSION=113 python -m build -python -m twine upload --repository testpypi dist/* --verbose +python -m twine upload dist/* --verbose module unload cuda |