[matmul kernel] [nvfp4] Use flex ctx out scale - to support tensor scale with nvfp4 output #13218
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: Integration Tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches-ignore: ['llvm-**'] | |
| merge_group: | |
| branches: [main, 'dev-**'] | |
| types: [checks_requested] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| permissions: read-all | |
| jobs: | |
| runner-preparation: | |
| uses: ./.github/workflows/runner-preparation.yml | |
| pre-commit: | |
| uses: ./.github/workflows/pre-commit.yml | |
| integration-tests-nvidia: | |
| needs: runner-preparation | |
| if: needs.runner-preparation.outputs.matrix-NVIDIA != '' | |
| uses: ./.github/workflows/integration-tests-nvidia.yml | |
| with: | |
| matrix: ${{ needs.runner-preparation.outputs.matrix-NVIDIA }} | |
| integration-tests-amd: | |
| needs: runner-preparation | |
| if: needs.runner-preparation.outputs.matrix-AMD != '' | |
| uses: ./.github/workflows/integration-tests-amd.yml | |
| with: | |
| matrix: ${{ needs.runner-preparation.outputs.matrix-AMD }} | |
| build-macos: | |
| needs: runner-preparation | |
| if: needs.runner-preparation.outputs.matrix-MACOS != '' | |
| uses: ./.github/workflows/build-macos.yml | |
| with: | |
| matrix: ${{ needs.runner-preparation.outputs.matrix-MACOS }} |