[Feature] Move 'Install MMCV' to a independent CI item.#602
Merged
xvjiarui merged 8 commits intoopen-mmlab:masterfrom Jun 17, 2021
Merged
[Feature] Move 'Install MMCV' to a independent CI item.#602xvjiarui merged 8 commits intoopen-mmlab:masterfrom
xvjiarui merged 8 commits intoopen-mmlab:masterfrom
Conversation
Codecov Report
@@ Coverage Diff @@
## master #602 +/- ##
==========================================
- Coverage 86.26% 85.95% -0.31%
==========================================
Files 101 101
Lines 5278 5234 -44
Branches 854 828 -26
==========================================
- Hits 4553 4499 -54
Misses 561 561
- Partials 164 174 +10
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
xvjiarui
reviewed
Jun 17, 2021
.github/workflows/build.yml
Outdated
| include: | ||
| - torch: 1.3.0+cpu | ||
| torchvision: 0.4.1+cpu | ||
| torch_version: 1.3.0 |
Collaborator
There was a problem hiding this comment.
We may add device to specify cuda / cpu.
xvjiarui
reviewed
Jun 17, 2021
.github/workflows/build.yml
Outdated
| if: ${{matrix.torchvision == '0.4.1'}} | ||
| run: pip install Pillow==6.2.2 | ||
| - name: Install PyTorch | ||
| run: pip install torch==${{matrix.torch}} torchvision==${{matrix.torchvision}} -f https://download.pytorch.org/whl/torch_stable.html |
Collaborator
There was a problem hiding this comment.
We need to install different device pytorch version.
xvjiarui
reviewed
Jun 17, 2021
.github/workflows/build.yml
Outdated
| matrix: | ||
| python-version: [ 3.6, 3.7 ] | ||
| torch: [ 1.3.0+cpu, 1.5.0+cpu, 1.5.0+cu101, 1.6.0+cu101, 1.7.0+cu101, 1.8.0+cu101 ] | ||
| torch: [ 1.3.0, 1.4.0, 1.5.0, 1.6.0, 1.7.0, 1.8.0 ] |
xvjiarui
approved these changes
Jun 17, 2021
bowenroom
pushed a commit
to bowenroom/mmsegmentation
that referenced
this pull request
Feb 25, 2022
* [Feature] Move 'Install MMCV' to a independent CI item. * Merge MMCV install into MMSEG dependencies install * Fix bug of 'Install MMCV' * Remove duplicate CI items * Fix torch device * Split cpu env and gpu env into two CI project * Fix some mmdet related bugs * Fix mmcv-full install bug of build_cpu CI project.
aravind-h-v
pushed a commit
to aravind-h-v/mmsegmentation
that referenced
this pull request
Mar 27, 2023
Fix params replication when sing the dummy checker.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add torch_version and cuda_version into
matrix;Add 'Install MMCV_CPU' CI item to install mmcv-full in cpu environment;
Add 'Install MMCV_GPU' CI item to install mmcv-full in gpu environment;