h200 tuning fused_moe_triton config for Mixtral 8x7B/8x22B and Qwen2 57BA14B #6530
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 |