Skip to content

Commit

Permalink
Add build trigger for 2.4.0-rc1 release (#7236)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavya01 committed Jun 11, 2024
1 parent 0255964 commit 7bedfe6
Show file tree
Hide file tree
Showing 2 changed files with 84 additions and 0 deletions.
2 changes: 2 additions & 0 deletions infra/ansible/config/cuda_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
cuda_deps:
# List all libcudnn8 versions with `apt list -a libcudnn8`
libcudnn:
"12.4": libcudnn-cuda-12=9.1.1.17-1
"12.3": libcudnn9-cuda-12=9.0.0.312-1
"12.1": libcudnn8=8.9.2.26-1+cuda12.1
"12.0": libcudnn8=8.8.0.121-1+cuda12.0
"11.8": libcudnn8=8.7.0.84-1+cuda11.8
"11.7": libcudnn8=8.5.0.96-1+cuda11.7
"11.2": libcudnn8=8.1.1.33-1+cuda11.2
libcudnn-dev:
"12.4": libcudnn-dev-cuda-12=9.1.1.17-1
"12.3": libcudnn9-dev-cuda-12=9.0.0.312-1
"12.1": libcudnn8-dev=8.9.2.26-1+cuda12.1
"12.0": libcudnn8-dev=8.8.0.121-1+cuda12.0
Expand Down
82 changes: 82 additions & 0 deletions infra/tpu-pytorch-releases/artifacts.auto.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,88 @@ nightly_builds = [

# Built on push to specific tag.
versioned_builds = [
# Remove libtpu from PyPI builds
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "tpu"
python_version = "3.9"
bundle_libtpu = "0"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "tpu"
python_version = "3.10"
bundle_libtpu = "0"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "tpu"
python_version = "3.11"
bundle_libtpu = "0"
},
# Bundle libtpu for Kaggle
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1+libtpu"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "tpu"
python_version = "3.10"
bundle_libtpu = "1"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "cuda"
cuda_version = "12.1"
python_version = "3.9"
},
{
git_tag = "v2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
accelerator = "cuda"
cuda_version = "12.1"
python_version = "3.10"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "cuda"
cuda_version = "12.1"
python_version = "3.11"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "cuda"
cuda_version = "12.4"
python_version = "3.9"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "cuda"
cuda_version = "12.4"
python_version = "3.10"
},
{
git_tag = "v2.4.0-rc1"
package_version = "2.4.0-rc1"
pytorch_git_rev = "v2.4.0-rc1"
accelerator = "cuda"
cuda_version = "12.4"
python_version = "3.11"
},
# Remove libtpu from PyPI builds
{
git_tag = "v2.3.0"
Expand Down

0 comments on commit 7bedfe6

Please sign in to comment.