fix decoding kernel for deepseekv2 #5758
Workflow file for this run
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: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Install pre-commit hook | |
run: | | |
python -m pip install pre-commit | |
pre-commit install | |
- name: Linting | |
run: pre-commit run --all-files | |
- name: Format c/cuda codes with clang-format | |
uses: DoozyX/clang-format-lint-action@v0.13 | |
with: | |
source: src | |
extensions: h,c,cpp,hpp,cu,cuh,cc | |
clangFormatVersion: 11 | |
style: file | |
- name: Check markdown link | |
uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-quiet-mode: 'yes' | |
use-verbose-mode: 'yes' | |
# check-modified-files-only: 'yes' | |
config-file: '.github/md-link-config.json' | |
file-path: './README.md, ./LICENSE, ./README_zh-CN.md' | |
- name: Check module init files | |
run: | | |
python -m pip install fire | |
python .github/scripts/check_lmdeploy.py check_module_init lmdeploy | |
- name: Check doc link | |
run: | | |
python .github/scripts/doc_link_checker.py --target README_zh-CN.md | |
python .github/scripts/doc_link_checker.py --target README.md | |
- name: Check docstring coverage | |
run: | | |
python -m pip install interrogate | |
interrogate -v --exclude ./lmdeploy/pytorch_poc/modeling/ --ignore-init-method --ignore-magic --ignore-module --ignore-private --ignore-nested-functions --ignore-nested-classes --fail-under 70 lmdeploy | |
- name: Check pylint score | |
run: | | |
python -m pip install pylint | |
pylint lmdeploy |