Add grid-stride + ROCm cap to linearize_cache_indices kernels #10839
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build FBGEMM GenAI x86 Linux Wheels | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - nightly | |
| - main | |
| tags: | |
| # Release candidate tag look like: v1.11.0-rc1 | |
| - v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+ | |
| - v[0-9]+.[0-9]+.[0-9]+ | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| generate-matrix: | |
| if: ${{ github.repository_owner == 'pytorch' }} | |
| uses: pytorch/test-infra/.github/workflows/generate_binary_build_matrix.yml@main | |
| with: | |
| package-type: wheel | |
| os: linux | |
| test-infra-repository: pytorch/test-infra | |
| test-infra-ref: main | |
| with-cuda: enable | |
| with-rocm: enable | |
| with-cpu: disable | |
| filter-matrix: | |
| if: ${{ github.repository_owner == 'pytorch' }} | |
| needs: generate-matrix | |
| runs-on: linux.24_04.4x | |
| outputs: | |
| matrix: ${{ steps.filter.outputs.matrix }} | |
| steps: | |
| - uses: actions/setup-python@v6 | |
| - name: Checkout FBGEMM repository | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: pytorch/fbgemm | |
| - name: Filter Generated Built Matrix | |
| id: filter | |
| env: | |
| MAT: ${{ needs.generate-matrix.outputs.matrix }} | |
| # Nova Coordinate Filters: | |
| # cuda/11.8: No longer supported in FBGEMM | |
| # cuda/12.9: No longer supported in PyTorch | |
| # cuda 13.2 (cu132): not supported by FBGEMM yet; validate step fails with | |
| # "Unknown distribution". Drop until 13.2 is supported. | |
| # rocm/3.13t: causes segfaults at runtime | |
| run: | | |
| set -ex | |
| pwd | |
| ls | |
| MATRIX_BLOB="$( python .github/scripts/filter_nova_matrix.py --filter gpu_arch_version:11.8 --filter 'gpu_arch_type:rocm;python_version:3.13t,3.14t' --filter 'gpu_arch_version:13.2' )" | |
| echo "${MATRIX_BLOB}" | |
| echo "matrix=${MATRIX_BLOB}" >> "${GITHUB_OUTPUT}" | |
| build: | |
| if: ${{ github.repository_owner == 'pytorch' }} | |
| needs: filter-matrix | |
| name: pytorch/FBGEMM | |
| uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main | |
| with: | |
| repository: pytorch/FBGEMM | |
| ref: "" | |
| pre-script: ../.github/scripts/nova_prescript.bash | |
| post-script: ../.github/scripts/nova_postscript.bash | |
| smoke-test-script: "" | |
| env-var-script: .github/scripts/nova_dir.bash | |
| package-name: fbgemm_gpu | |
| build-target: genai | |
| test-infra-repository: pytorch/test-infra | |
| test-infra-ref: main | |
| build-matrix: ${{ needs.filter-matrix.outputs.matrix }} | |
| trigger-event: ${{ github.event_name }} | |
| # Based on current measurements for CUDA 12.9 workflows, builds take | |
| # 2.5 hours while tests take 0.1 hours | |
| timeout: 210 | |
| secrets: | |
| R2_ACCOUNT_ID: ${{ secrets.R2_ACCOUNT_ID }} | |
| R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} | |
| R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} |