Fix to allow all gemm tile shapes #1232
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: "Intel G++ Host Compilation Test " | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| merge_group: | |
| branches: [ "main" ] | |
| workflow_dispatch: | |
| inputs: | |
| DPCPP_VERSION: | |
| description: "DPCPP version to use" | |
| type: string | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Quick validation for PRs - single configuration | |
| test-pr: | |
| if: github.event_name == 'pull_request' || github.event_name == 'merge_group' | |
| uses: ./.github/workflows/intel_test_gpp_host_reusable.yml | |
| with: | |
| compiler: '["RELEASE"]' | |
| intel_graphics: '["ROLLING"]' | |
| gpu: '["PVC", "BMG"]' | |
| DPCPP_VERSION: ${{ inputs.DPCPP_VERSION }} | |
| # Full testing for pushes - 2 configurations | |
| test-push: | |
| if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
| uses: ./.github/workflows/intel_test_gpp_host_reusable.yml | |
| with: | |
| compiler: '["RELEASE", "NIGHTLY"]' | |
| intel_graphics: '["ROLLING"]' | |
| gpu: '["PVC", "BMG"]' | |
| DPCPP_VERSION: ${{ inputs.DPCPP_VERSION }} |