[kernel optimize] benchmark write_req_to_token_pool_triton and optimize kernel #6052
This file contains 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: Lint | |
on: [pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install pre-commit hook | |
run: | | |
python -m pip install pre-commit | |
pre-commit install | |
- name: Linting | |
run: pre-commit run --all-files |