1. 10 May, 2022 2 commits
    • jmercat's avatar
      [Fix] Fix dump method of Config (#1837) · 1dbb5d36
      jmercat authored
      
      
      * config dump fix
      dump should not depend on how config was loaded only where it is dumped
      changed checks for type to the given filename instead of the source filename
      
      * defined test_fromdict and fixed dump function
      it might be more convoluted than it needs to be but the formatting depends on the extension of the argument or the extension of the self.filename
      
      * config dump defaults to returning pretty_text, test_fromdict renamed to test_dump_from_dict
      
      * some reformatting in docstrings
      
      * refine unittest
      
      * fix unit test as comment
      
      * Refine docstring
      
      * minor refinement
      
      * import mmcv
      
      * fix lint
      Co-authored-by: default avatarHAOCHENYE <21724054@zju.edu.cn>
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      1dbb5d36
    • Alex Yang's avatar
      [Fix] Fix type hint in file_client (#1942) · a848ecfd
      Alex Yang authored
      * [fix]:fix type hint in file_client and mmcv
      
      * [fix]:fix type hint in tests files
      
      * [fix]:fix type hint in tests files
      
      * [fix]:fix pre-commit.yaml to igore test for mypy
      
      * [fix]:fix pre-commit.yaml to igore test for mypy
      
      * [fix]:fix precommit.yml
      
      * [fix]:fix precommit.yml
      
      * Update __init__.py
      
      delete unused type-ignore comment
      a848ecfd
  2. 09 May, 2022 3 commits
  3. 08 May, 2022 2 commits
  4. 07 May, 2022 1 commit
  5. 05 May, 2022 2 commits
  6. 02 May, 2022 1 commit
  7. 30 Apr, 2022 1 commit
  8. 29 Apr, 2022 3 commits
  9. 28 Apr, 2022 1 commit
  10. 27 Apr, 2022 2 commits
  11. 26 Apr, 2022 1 commit
  12. 25 Apr, 2022 2 commits
  13. 24 Apr, 2022 1 commit
  14. 21 Apr, 2022 1 commit
  15. 18 Apr, 2022 5 commits
    • Zaida Zhou's avatar
      bump version to v1.5.0 (#1883) · 235c0253
      Zaida Zhou authored
      235c0253
    • Mashiro's avatar
      [Enhancement] Enhance get_torchvision_models (#1867) · a80df687
      Mashiro authored
      * enhance get_torchvision_models
      
      * simplify logic
      
      * Dump ckpt in torchvision lower than 0.13.0 to a json file
      
      * add json
      
      * refactor load urls logic
      
      * fix unit test
      
      * change url key to lower letters
      
      * check torchvision version rather than check torch version in unittest
      
      * Fix CI and refine test logic of torchvision version
      
      * add comment
      
      * support compare pre-release version
      
      * support loaad modeel like torchvision
      
      * refine comment.
      
      * fix unit test and comment
      
      * fxi unit test bug
      
      * support get model by lower weights
      a80df687
    • Tan SU's avatar
      [Fix] Get correct encoding in Windows for collect_env() (#1887) · a5cfcb93
      Tan SU authored
      * [Fix] get correct encoding in Windows for collect_env()
      
      * stdout.fileno()
      a5cfcb93
    • Vince Jankovics's avatar
      [Enhancement] Support None in DictAction (#1834) · b8044770
      Vince Jankovics authored
      * None parsing fixed for config
      
      * Formatting
      
      * Lower case none fix
      b8044770
    • mattcasey02's avatar
      [Fix] Fixed version comparison to include prerelease versions (#1877) · 6f6b17e6
      mattcasey02 authored
      * Fixed version comparison to include prerelease versions
      
      Currently all tagged versions of torch 1.11.0 have version 1.11.0a0. Previously the comparison to 1.11.0 failed and self._sync_params() was still used, causing an error. This fix should include all versions of 1.11.
      
      * Same update
      
      Didn't realize that 1.11.0 was mentioned multiple times in the file. This fixes the other instances.
      6f6b17e6
  16. 17 Apr, 2022 1 commit
    • Hu Di's avatar
      [Feature] Support MMCV on IPU (#1882) · 5221a388
      Hu Di authored
      * implement runner on IPU
      
      * adjust import
      
      * adjust import
      
      * add ignore for ipu on without ipu
      
      * remove compilation cache
      
      * remove ipu from mmcv/runner.__all__
      
      * adjust IS_IPU and IS_MLU
      
      * adjust by isort
      
      * add ipuHardwareIsAvailable
      
      * remove engine_cache
      
      * code review 9
      5221a388
  17. 16 Apr, 2022 3 commits
    • Qiza-lyhm's avatar
      [Fix] Add MLU kernels to be compiled (#1885) · 42e7e2ee
      Qiza-lyhm authored
      - Add MLU operator kernels.
      42e7e2ee
    • Zaida Zhou's avatar
      [Refactor] Move is_mlu_available to mmcv/utils/device_type.py (#1884) · 03b38a46
      Zaida Zhou authored
      * [Refactor] Move is_mlu_available to mmcv/utils/device_type.py
      
      * remove comma
      
      * fix isort
      03b38a46
    • Jiazhen Wang's avatar
      [Feature] Add several MLU ops (#1563) · 362a90f8
      Jiazhen Wang authored
      
      
      * [Feature] Add roiaware pool3d ops from mmdet3d (#1382)
      
      * add ops (roiaware pool3d) in mmdet3d
      
      * refactor code
      
      * fix typo
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      
      * [Feature] Add iou3d op from mmdet3d (#1356)
      
      * add ops (iou3d) in mmdet3d
      
      * add unit test
      
      * refactor code
      
      * refactor code
      
      * refactor code
      
      * refactor code
      
      * refactor code
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      
      * [Fix] Update test data for test_iou3d (#1427)
      
      * Update test data for test_iou3d
      
      * delete blank lines
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * [Feature] Add group points ops from mmdet3d (#1415)
      
      * add op (group points) and its related ops (ball query and knn) in mmdet3d
      
      * refactor code
      
      * fix typo
      
      * refactor code
      
      * fix typo
      
      * refactor code
      
      * make input contiguous
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      
      * add mmdet3d op (#1425)
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      
      * [Feature] Loading objects from different backends and dumping objects to different backends (#1330)
      
      * [Feature] Choose storage backend by the prefix of filepath
      
      * refactor FileClient and add unittest
      
      * support loading from different backends
      
      * polish docstring
      
      * fix unittet
      
      * rename attribute str_like_obj to is_str_like_obj
      
      * add infer_client method
      
      * add check_exist method
      
      * rename var client to file_client
      
      * polish docstring
      
      * add join_paths method
      
      * remove join_paths and add _format_path
      
      * enhance unittest
      
      * refactor unittest
      
      * singleton pattern
      
      * fix test_clientio.py
      
      * deprecate CephBackend
      
      * enhance docstring
      
      * refactor unittest for petrel
      
      * refactor unittest for disk backend
      
      * update io.md
      
      * add concat_paths method
      
      * improve docstring
      
      * improve docstring
      
      * add isdir and copyfile for file backend
      
      * delete copyfile and add get_local_path
      
      * remove isdir method of petrel
      
      * fix typo
      
      * add comment and polish docstring
      
      * polish docstring
      
      * rename _path_mapping to _map_path
      
      * polish docstring and fix typo
      
      * refactor get_local_path
      
      * add list_dir_or_file for FileClient
      
      * add list_dir_or_file for PetrelBackend
      
      * fix windows ci
      
      * Add return docstring
      
      * polish docstring
      
      * fix typo
      
      * fix typo
      
      * deprecate the conversion from Path to str
      
      * add docs for loading checkpoints with FileClient
      
      * refactor map_path
      
      * add _ensure_methods to ensure methods have been implemented
      
      * fix list_dir_or_file
      
      * rename _ensure_method_implemented to has_method
      
      * Add CI for pytorch 1.10 (#1431)
      
      * [Feature] Upload checkpoints and logs to ceph (#1375)
      
      * [Feature] Choose storage backend by the prefix of filepath
      
      * refactor FileClient and add unittest
      
      * support loading from different backends
      
      * polish docstring
      
      * fix unittet
      
      * rename attribute str_like_obj to is_str_like_obj
      
      * [Docs] Upload checkpoint to petrel oss
      
      * add infer_client method
      
      * Support uploading checkpoint to petrel oss
      
      * add check_exist method
      
      * refactor CheckpointHook
      
      * support uploading logs to ceph
      
      * rename var client to file_client
      
      * polish docstring
      
      * enhance load_from_ceph
      
      * refactor load_from_ceph
      
      * refactor TextLoggerHook
      
      * change the meaning of out_dir argument
      
      * fix test_checkpoint_hook.py
      
      * add join_paths method
      
      * remove join_paths and add _format_path
      
      * enhance unittest
      
      * refactor unittest
      
      * add a unittest for EvalHook when file backend is petrel
      
      * singleton pattern
      
      * fix test_clientio.py
      
      * deprecate CephBackend
      
      * add warning in load_from_ceph
      
      * fix type of out_suffix
      
      * enhance docstring
      
      * refactor unittest for petrel
      
      * refactor unittest for disk backend
      
      * update io.md
      
      * add concat_paths method
      
      * fix CI
      
      * mock check_exist
      
      * improve docstring
      
      * improve docstring
      
      * improve docstring
      
      * improve docstring
      
      * add isdir and copyfile for file backend
      
      * delete copyfile and add get_local_path
      
      * remove isdir method of petrel
      
      * fix typo
      
      * rename check_exists to exists
      
      * refactor code and polish docstring
      
      * fix windows ci
      
      * add comment and polish docstring
      
      * polish docstring
      
      * polish docstring
      
      * rename _path_mapping to _map_path
      
      * polish docstring and fix typo
      
      * refactor get_local_path
      
      * add list_dir_or_file for FileClient
      
      * add list_dir_or_file for PetrelBackend
      
      * fix windows ci
      
      * Add return docstring
      
      * polish docstring
      
      * fix typo
      
      * fix typo
      
      * fix typo
      
      * fix error when mocking PetrelBackend
      
      * deprecate the conversion from Path to str
      
      * add docs for loading checkpoints with FileClient
      
      * rename keep_log to keep_local
      
      * refactor map_path
      
      * add _ensure_methods to ensure methods have been implemented
      
      * fix list_dir_or_file
      
      * rename _ensure_method_implemented to has_method
      
      * refactor
      
      * polish information
      
      * format information
      
      * bump version to v1.3.16 (#1430)
      
      * [Fix]: Update test data of test_tin_shift (#1426)
      
      * Update test data of test_tin_shift
      
      * Delete tmp.engine
      
      * add pytest raises asserterror test
      
      * raise valueerror, update test log
      
      * add more comment
      
      * Apply suggestions from code review
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * fix the wrong function reference bug in BaseTransformerLayer when batch_first is True (#1418)
      
      * [Docs] Add mmcv itself in the docs list (#1441)
      
      * Add mmcv itself in the docs list
      
      * modify link of docs
      
      * [Improve] improve checkpoint loading log (#1446)
      
      * [Feature] Support SigmoidFocalLoss with Cambricon MLU backend (#1346)
      
      * [Feature] Support SigmoidFocalLoss with Cambricon MLU backend
      
      * refactor MMCV_WITH_MLU macro define
      
      * refactor NFU_ALIGN_SIZE, PAD_DOWN and split_pipeline_num
      
      * delete extra fool proofing in cpp
      
      * [Feature] Support SigmoidFocalLossBackward with Cambricon MLU backend
      
      * fix macro definition in SigmoidFocalLoss
      
      * refactor mlu files into clang-format
      
      * refactor sigmoid focal loss test
      
      * refactor Sigmoid Focal Loss file structure.
      
      * fix python lint error
      
      * fix import torch_mlu error type
      
      * fix lint
      
      * refactor clang format style to google
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      
      * [Feature] Support RoiAlign With Cambricon MLU Backend (#1429)
      
      * [Feature] Support NMS with cambricon MLU backend (#1467)
      
      * [Feature] Support BBoxOverlaps with cambricon MLU backend (#1507)
      
      * [Refactor] Format C++ code
      
      * [Refactor] include common_mlu_helper in pytorch_mlu_helper and refactor build condition
      
      * [Improve] Improve the performance of roialign, nms and focalloss with MLU backend (#1572)
      
      * [Improve] Improve the performance of roialign with MLU backend
      
      * replace CHECK_MLU with CHECK_MLU_INPUT
      
      * [Improve] Improve the perf of nms and focallosssigmoid with MLU backend
      
      * [Improve] Improve the performance of roialign with MLU backend (#1741)
      
      * [Feature] Support tin_shift with cambricon MLU backend (#1696)
      
      * [Feature] Support tin_shift with cambricon MLU backend
      
      * [fix] Add the assertion of batch_size in tin_shift.py
      
      * [fix] fix the param check of tin_shift in cambricon code
      
      * [fix] Fix lint failure.
      
      * [fix] Fix source file lint failure.
      
      * Update mmcv/ops/tin_shift.py
      
      [Refactor] Modify the code in mmcv/ops/tin_shift.py.
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      Co-authored-by: default avatarbudefei <budefei@cambricon.com>
      Co-authored-by: default avatarbudefei <budefei@cambricom.com>
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      
      * resolve conflicts and fix lint
      
      * fix mmcv.utils.__init__
      
      * fix mmcv.utils.__init__
      
      * Fix lints and change FLAG
      
      * fix setup and refine
      
      * remove a redundant line
      
      * remove an unnecessary 'f'
      
      * fix compilation error
      Co-authored-by: default avatardingchang <hudingchang.vendor@sensetime.com>
      Co-authored-by: default avatarzhouzaida <zhouzaida@163.com>
      Co-authored-by: default avatarq.yao <yaoqian@sensetime.com>
      Co-authored-by: default avatarZaida Zhou <58739961+zhouzaida@users.noreply.github.com>
      Co-authored-by: default avatarpc <luopeichao@sensetime.com>
      Co-authored-by: default avatarWenwei Zhang <40779233+ZwwWayne@users.noreply.github.com>
      Co-authored-by: default avatarq.yao <streetyao@live.com>
      Co-authored-by: default avatarTong Gao <gaotongxiao@gmail.com>
      Co-authored-by: default avatarYuxin Liu <liuyuxin@cambricon.com>
      Co-authored-by: default avatarzihanchang11 <92860914+zihanchang11@users.noreply.github.com>
      Co-authored-by: default avatarshlrao <shenglong.rao@gmail.com>
      Co-authored-by: default avatarzhouchenyang <zcy19950525@gmail.com>
      Co-authored-by: default avatarMrxiaofei <36697723+Mrxiaofei@users.noreply.github.com>
      Co-authored-by: default avatarbudefei <budefei@cambricon.com>
      Co-authored-by: default avatarbudefei <budefei@cambricom.com>
      362a90f8
  18. 15 Apr, 2022 5 commits
    • Qiza-lyhm's avatar
      [Fix] Fix the output of scatter on MLU device (#1881) · 95273020
      Qiza-lyhm authored
      To have the same shape of MLU copy and Scatter.forward, a 1-dim list has to be added.
      
      Origin MMDP / MMDDP with this scatter_gather returns a list of tensor for each targets, and here MLU copy returns the same shape Tensor in a list of just one default target.
      95273020
    • Danila Rukhovich's avatar
      [Enhance] Differentiable rotated IoU (#1854) · aee596d5
      Danila Rukhovich authored
      * diff_iou_rotated is working
      
      * add test; fix lint
      
      * fix lint for test
      
      * disable cpu build
      
      * refactor files structure
      
      * fix comments
      
      * remove extra .repeat()
      
      * add comment
      
      * fix j-1 bug; update doc
      
      * fix clang lint
      
      * update docstrings
      
      * fix comments
      
      * fix comments
      aee596d5
    • Charlyo's avatar
      Make sure padding size is not negative (#1792) · 7982dd1a
      Charlyo authored
      * Make sure padding size is not negative
      
      If Resize maintains aspect ratio, could be the case that image shape is bigger than resize value.
      
      * Test pad shape smaller than image shape
      
      * Fix lint
      
      * Remove whitespaces
      7982dd1a
    • q.yao's avatar
      NMS with CUDA only (#1824) · 74031cc5
      q.yao authored
      * add gather_keep_from_mask_parallize
      
      * remove unused cache
      
      * move syncthread
      
      * remove unused comment
      
      * add more comments, rename the kernel and variable
      74031cc5
    • Wenwei Zhang's avatar
      Fix lint issue (#1880) · 3270caf6
      Wenwei Zhang authored
      3270caf6
  19. 14 Apr, 2022 3 commits