Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/generate_ci_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,10 @@ def cuda_versions(self) -> List[str]:
# FBGEMM HSTU is expensive, so conserve CI resources
return ["12.8.1"]
elif self.target == TARGET_GENAI:
return ["12.6.3", "12.8.1", "12.9.1", "13.0.2"]
return ["12.6.3", "12.8.1", "12.9.1", "13.0.2", "13.2.0"]
else:
# GenAI is unable to support 11.8.0 anymore as of https://github.com/pytorch/FBGEMM/pull/4138
return ["12.6.3", "12.8.1", "12.9.1", "13.0.2"]
return ["12.6.3", "12.8.1", "12.9.1", "13.0.2", "13.2.0"]

def rocm_versions(self) -> List[str]:
if GitRepo.ref() == REFS_MAIN and GitRepo.event_name() == EVENT_NAME_PUSH:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fbgemm_gpu_release_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
description: CUDA Version to Use for Building Artifact
type: choice
required: false
options: [ "12.6.3", "12.8.1", "12.9.1", "13.0.2" ]
options: [ "12.6.3", "12.8.1", "12.9.1", "13.0.2", "13.2.0" ]
default: "13.0.2"
publish-to-pypi:
description: Publish Artifact to PyPI
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fbgemm_gpu_release_genai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
description: CUDA Version to Use for Building Artifact
type: choice
required: false
options: [ "12.6.3", "12.8.1", "12.9.1", "13.0.2" ]
options: [ "12.6.3", "12.8.1", "12.9.1", "13.0.2", "13.2.0" ]
default: "13.0.2"
publish-to-pypi:
description: Publish Artifact to PyPI
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
{ arch: x86, instance: "linux.12xlarge.memory" },
]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
cuda-version: [ "12.6.3", "12.8.1", "13.0.2" ]
cuda-version: [ "12.6.3", "12.8.1", "13.0.2", "13.2.0" ]

steps:
- name: Setup Build Container
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
{ arch: x86, instance: "linux.g5.4xlarge.nvidia.gpu" },
]
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
cuda-version: [ "12.6.3", "12.8.1", "13.0.2" ]
cuda-version: [ "12.6.3", "12.8.1", "13.0.2", "13.2.0" ]
needs: build_artifact

steps:
Expand Down
Loading