-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump to v1.1.0rc2
- Loading branch information
Showing
360 changed files
with
11,162 additions
and
4,888 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: lint | ||
|
||
on: [push, pull_request] | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install pre-commit hook | ||
run: | | ||
pip install pre-commit | ||
pre-commit install | ||
- name: Linting | ||
run: pre-commit run --all-files | ||
- name: Check docstring coverage | ||
run: | | ||
pip install interrogate | ||
interrogate -v --ignore-init-method --ignore-module --ignore-nested-functions --ignore-regex "__repr__" --fail-under 90 mmdet3d |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
name: merge_stage_test | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'README.md' | ||
- 'README_zh-CN.md' | ||
- 'docs/**' | ||
- 'demo/**' | ||
- '.dev_scripts/**' | ||
- '.circleci/**' | ||
branches: | ||
- dev-1.x | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build_cpu_py: | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
python-version: [3.7, 3.8, 3.9] | ||
torch: [1.8.1] | ||
include: | ||
- torch: 1.8.1 | ||
torchvision: 0.9.1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Upgrade pip | ||
run: pip install pip --upgrade | ||
- name: Install PyTorch | ||
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/torch_stable.html | ||
- name: Install MMEngine | ||
run: pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
- name: Install MMCV | ||
run: | | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
- name: Install MMDet | ||
run: pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
- name: Install other dependencies | ||
run: pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: rm -rf .eggs && pip install -e . | ||
- name: Run unittests and generate coverage report | ||
run: | | ||
coverage run --branch --source mmdet3d -m pytest tests/ | ||
coverage xml | ||
coverage report -m | ||
build_cpu_pt: | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
python-version: [3.7] | ||
torch: [1.6.0, 1.7.1, 1.8.1, 1.9.1, 1.10.1, 1.11.0, 1.12.1] | ||
include: | ||
- torch: 1.6.0 | ||
torchvision: 0.7.0 | ||
- torch: 1.7.1 | ||
torchvision: 0.8.2 | ||
- torch: 1.8.1 | ||
torchvision: 0.9.1 | ||
- torch: 1.9.1 | ||
torchvision: 0.10.1 | ||
- torch: 1.10.1 | ||
torchvision: 0.11.2 | ||
- torch: 1.11.0 | ||
torchvision: 0.12.0 | ||
- torch: 1.12.1 | ||
torchvision: 0.13.1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Upgrade pip | ||
run: pip install pip --upgrade | ||
- name: Install PyTorch | ||
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/torch_stable.html | ||
- name: Install MMEngine | ||
run: pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
- name: Install MMCV | ||
run: | | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
- name: Install MMDet | ||
run: pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
- name: Install other dependencies | ||
run: pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: rm -rf .eggs && pip install -e . | ||
- name: Run unittests and generate coverage report | ||
run: | | ||
coverage run --branch --source mmdet3d -m pytest tests/ | ||
coverage xml | ||
coverage report -m | ||
# Only upload coverage report for python3.7 && pytorch1.8.1 cpu | ||
- name: Upload coverage to Codecov | ||
if: ${{matrix.torch == '1.8.1' && matrix.python-version == '3.7'}} | ||
uses: codecov/codecov-action@v1.0.14 | ||
with: | ||
file: ./coverage.xml | ||
flags: unittests | ||
env_vars: OS,PYTHON | ||
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
|
||
build_cu102: | ||
runs-on: ubuntu-18.04 | ||
container: | ||
image: pytorch/pytorch:1.8.1-cuda10.2-cudnn7-devel | ||
strategy: | ||
matrix: | ||
python-version: [3.7] | ||
include: | ||
- torch: 1.8.1 | ||
cuda: 10.2 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Upgrade pip | ||
run: pip install pip --upgrade | ||
- name: Fetch GPG keys | ||
run: | | ||
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub | ||
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/7fa2af80.pub | ||
- name: Install Python-dev | ||
run: apt-get update && apt-get install -y python${{matrix.python-version}}-dev | ||
if: ${{matrix.python-version != 3.9}} | ||
- name: Install system dependencies | ||
run: | | ||
apt-get update && apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libsm6 libxrender-dev libxext6 | ||
- name: Install PyTorch | ||
run: python -m pip install torch==1.8.1+cu102 torchvision==0.9.1+cu102 -f https://download.pytorch.org/whl/torch_stable.html | ||
- name: Install mmdet3d dependencies | ||
run: | | ||
pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: | | ||
python setup.py check -m -s | ||
TORCH_CUDA_ARCH_LIST=7.0 pip install -e . | ||
build_windows: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-2022] | ||
python: [3.7] | ||
platform: [cpu, cu111] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Upgrade pip | ||
run: pip install pip --upgrade | ||
- name: Install lmdb | ||
run: pip install lmdb | ||
- name: Install PyTorch | ||
run: pip install torch==1.8.1+${{matrix.platform}} torchvision==0.9.1+${{matrix.platform}} -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html | ||
- name: Install mmdet3d dependencies | ||
run: | | ||
pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: | | ||
pip install -e . | ||
- name: Run unittests and generate coverage report | ||
run: | | ||
pytest tests/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
name: pr_stage_test | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- 'README.md' | ||
- 'README_zh-CN.md' | ||
- 'docs/**' | ||
- 'demo/**' | ||
- '.dev_scripts/**' | ||
- '.circleci/**' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build_cpu: | ||
runs-on: ubuntu-18.04 | ||
strategy: | ||
matrix: | ||
python-version: [3.7] | ||
include: | ||
- torch: 1.8.1 | ||
torchvision: 0.9.1 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Upgrade pip | ||
run: pip install pip --upgrade | ||
- name: Install PyTorch | ||
run: pip install torch==${{matrix.torch}}+cpu torchvision==${{matrix.torchvision}}+cpu -f https://download.pytorch.org/whl/torch_stable.html | ||
- name: Install MMEngine | ||
run: pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
- name: Install MMCV | ||
run: | | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
- name: Install MMDet | ||
run: pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
- name: Install other dependencies | ||
run: pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: rm -rf .eggs && pip install -e . | ||
- name: Run unittests and generate coverage report | ||
run: | | ||
coverage run --branch --source mmdet3d -m pytest tests/ | ||
coverage xml | ||
coverage report -m | ||
# Upload coverage report for python3.7 && pytorch1.8.1 cpu | ||
- name: Upload coverage to Codecov | ||
uses: codecov/codecov-action@v1.0.14 | ||
with: | ||
file: ./coverage.xml | ||
flags: unittests | ||
env_vars: OS,PYTHON | ||
name: codecov-umbrella | ||
fail_ci_if_error: false | ||
|
||
build_cu102: | ||
runs-on: ubuntu-18.04 | ||
container: | ||
image: pytorch/pytorch:1.8.1-cuda10.2-cudnn7-devel | ||
strategy: | ||
matrix: | ||
python-version: [3.8] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Upgrade pip | ||
run: pip install pip --upgrade | ||
- name: Fetch GPG keys | ||
run: | | ||
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/3bf863cc.pub | ||
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64/7fa2af80.pub | ||
- name: Install Python-dev | ||
run: apt-get update && apt-get install -y python${{matrix.python-version}}-dev | ||
if: ${{matrix.python-version != 3.9}} | ||
- name: Install system dependencies | ||
run: | | ||
apt-get update | ||
apt-get install -y ffmpeg libsm6 libxext6 git ninja-build libglib2.0-0 libxrender-dev | ||
- name: Install PyTorch | ||
run: python -m pip install torch==1.8.1+cu102 torchvision==0.9.1+cu102 -f https://download.pytorch.org/whl/torch_stable.html | ||
- name: Install mmdet3d dependencies | ||
run: | | ||
pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: | | ||
python setup.py check -m -s | ||
TORCH_CUDA_ARCH_LIST=7.0 pip install -e . | ||
build_windows: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-2022] | ||
python: [3.7] | ||
platform: [cpu, cu111] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Upgrade pip | ||
run: python -m pip install pip --upgrade | ||
- name: Install lmdb | ||
run: pip install lmdb | ||
- name: Install PyTorch | ||
run: pip install torch==1.8.1+${{matrix.platform}} torchvision==0.9.1+${{matrix.platform}} -f https://download.pytorch.org/whl/lts/1.8/torch_lts.html | ||
- name: Install mmdet3d dependencies | ||
run: | | ||
pip install git+https://github.com/open-mmlab/mmengine.git@main | ||
pip install -U openmim | ||
mim install 'mmcv >= 2.0.0rc1' | ||
pip install git+https://github.com/open-mmlab/mmdetection.git@dev-3.x | ||
pip install -r requirements/tests.txt | ||
- name: Build and install | ||
run: | | ||
pip install -e . | ||
- name: Run unittests and generate coverage report | ||
run: | | ||
pytest tests/ |
File renamed without changes.
Oops, something went wrong.