From 7439924891496025edf60c9da6a782f362a50c70 Mon Sep 17 00:00:00 2001 From: Tim Dettmers Date: Tue, 5 Oct 2021 19:16:20 -0700 Subject: Initial commit --- deploy.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 deploy.sh (limited to 'deploy.sh') 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 -- cgit v1.2.3