add assign_score_withk adaptation code for NPU #5345
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] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10.15 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10.15' | |
- name: Install pre-commit hook | |
run: | | |
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.18 | |
with: | |
source: mmcv/ops/csrc | |
extensions: h,c,cpp,hpp,cu,cuh | |
style: google |