[GPU] Add fully_connected_bf_tiled_dyn_b kernel for small-batch INT4 FC #99353
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: "Pull Request Labeler" | |
| on: | |
| - pull_request_target | |
| permissions: read-all | |
| jobs: | |
| triage: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'openvinotoolkit' }} | |
| steps: | |
| - uses: akladiev/labeler@eeac5941e7fb6f980d47e038ac0665168851c874 # v4.3.1 | |
| with: | |
| repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
| configuration-path: '.github/labeler.yml' | |
| sync-labels: 'true' | |
| dot: 'true' | |
| non-matching-label: 'no-match-files' | |
| external_pr_labeller: | |
| name: Label External PR | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository_owner == 'openvinotoolkit' }} | |
| steps: | |
| - name: Checkout Labeller Script | |
| uses: ababushk/checkout@dd591a6a2ac25618db4eda86e7e0d938f88cf01b # cherry_pick_retries | |
| timeout-minutes: 15 | |
| with: | |
| sparse-checkout: '.github' | |
| - name: Install deps | |
| run: pip3 install PyGithub==2.2.0 | |
| - name: Dump GitHub context | |
| env: | |
| GITHUB_CONTEXT: ${{ toJson(github) }} | |
| run: echo "$GITHUB_CONTEXT" | |
| - name: Label External PR | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.EXTERNAL_LABELLER_TOKEN }}" | |
| run: | | |
| python3 ${{ github.workspace }}/.github/scripts/external_pr_labeller.py \ | |
| --repository-name ${GITHUB_REPOSITORY} --pr-number ${{ github.event.number }} |