[Kernel][Quantization] add w4a8 support for marlin kernel #29425
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: BC Lint | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| bc_lint: | |
| if: github.repository_owner == 'vllm-project' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run BC Lint Action | |
| uses: pytorch/test-infra/.github/actions/bc-lint@main | |
| with: | |
| repo: ${{ github.event.pull_request.head.repo.full_name }} | |
| base_sha: ${{ github.event.pull_request.base.sha }} | |
| head_sha: ${{ github.event.pull_request.head.sha }} | |
| suppression: ${{ contains(github.event.pull_request.labels.*.name, 'suppress-bc-linter') }} | |
| docs_link: 'https://github.com/pytorch/test-infra/wiki/BC-Linter' | |
| config_dir: .github | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true |