"vscode:/vscode.git/clone" did not exist on "1005e9d34d1c04472a388a434add424176fec46d"
  1. 08 Apr, 2021 1 commit
  2. 07 Apr, 2021 1 commit
  3. 06 Apr, 2021 1 commit
    • tangyanf's avatar
      [feature]:add onnxruntime custom op grid_sample (#916) · 83cf25b2
      tangyanf authored
      * add onnxruntime custom op grid_sample
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      
      * update code
      83cf25b2
  4. 02 Apr, 2021 2 commits
  5. 30 Mar, 2021 1 commit
    • q.yao's avatar
      [Feature] : Add grid_sampler TensorRT Plugin (#865) · 9d80f56a
      q.yao authored
      * add grid sample trt support
      
      * fix align_corners=True
      
      * change 'intep' to 'interp', fix bugs of grid sampler, better test script
      
      * remove unused import
      
      * move source comment to the top of trt_grid_sampler_kernel.cu
      9d80f56a
  6. 29 Mar, 2021 1 commit
  7. 28 Mar, 2021 1 commit
  8. 26 Mar, 2021 2 commits
  9. 25 Mar, 2021 1 commit
  10. 24 Mar, 2021 1 commit
  11. 21 Mar, 2021 1 commit
  12. 20 Mar, 2021 1 commit
  13. 19 Mar, 2021 1 commit
  14. 18 Mar, 2021 1 commit
  15. 17 Mar, 2021 1 commit
  16. 12 Mar, 2021 1 commit
  17. 11 Mar, 2021 2 commits
  18. 10 Mar, 2021 1 commit
  19. 09 Mar, 2021 1 commit
  20. 08 Mar, 2021 2 commits
  21. 03 Mar, 2021 3 commits
    • LXXXXR's avatar
      27e9ede5
    • sshuair's avatar
      add HTTP backend (#860) · 6719cde4
      sshuair authored
      * add HTTP backend
      
      * add HTTPbackend
      
      * fix linting
      
      * fix linting
      
      * add docs attributes http
      
      * fix format
      
      * add real http link test for http backend
      6719cde4
    • Ycr's avatar
      [Feature] Support revise_keys in load_checkpoint(). (#829) · e076c8b0
      Ycr authored
      * Simplified the code.
      
      * Improved chkpt compatibility.
      
      * One may modify the checkpoint via adding keywords.
      
      * Tiny.
      
      * Following reviewer's suggestion.
      
      * Added unit_test.
      
      * Fixed.
      
      * Modify the state_dict  with  construction.
      
      * Added test.
      
      * Modified。
      
      * Mimimalised the modification.
      
      * Added the docstring.
      
      * Format.
      
      * Improved.
      
      * Tiny.
      
      * Temp file.
      
      * Added assertion.
      
      * Doc string.
      
      * Fixed.
      e076c8b0
  22. 28 Feb, 2021 1 commit
  23. 27 Feb, 2021 1 commit
  24. 26 Feb, 2021 2 commits
    • z55250825's avatar
      Add new parrots extension implementation for all ops (#794) · 48d99025
      z55250825 authored
      * delete all parrots file
      add bbox_overlaps new parrots op impl
      
      * support first new impl parrts op (bbox_overlaps)(success test)
      
      * add box_iou_rotated op, test succeed
      
      * add carafe and carafe_naive op, test succeed (one parrots bug need fix)
      
      * add cc_attention op, test success
      
      * add corner_pool op, test success
      
      * add parrots op deform_conv, test success
      
      * add deform_roi_pool op, test success (but has question)
      
      * add focal loss op, test success (gradcheck)
      
      * add masked_conv2d op, test success
      
      * add modulated_deform_conv op, test success
      
      * add nms and nms_rotated op, test success
      
      * add psamask op, test success
      
      * add roi_align op, test_success
      
      * add roi_pool op, test success
      
      * add sync_bn op, test success
      
      * add tin_shift op, test success
      
      * fix test_deform_roi_pool, add parrots test
      
      * skip test_onnx because parrots does not support onnx
      
      * fix c++ lint
      
      * fix python lint
      
      * fix python lint
      48d99025
    • RunningLeon's avatar
      Fix pytorch2onnx failed for interpolate op with PyTorch==1.6.0(mmdet#4646) (#848) · 72e4cc12
      RunningLeon authored
      * Fix pytorch2onnx for yolov3 with torch==1.6.0
      
      * update and add test for F.interpolate
      
      * add test_onnx.py with build_cuda
      72e4cc12
  25. 25 Feb, 2021 1 commit
  26. 24 Feb, 2021 2 commits
  27. 23 Feb, 2021 1 commit
    • q.yao's avatar
      [Feature] : Add NonMaxSuppression TensorRT Plugin (#787) · 1ee5315e
      q.yao authored
      * start trt plugin prototype
      
      * Add test module, modify roialign convertor
      
      * finish roi_align trt plugin
      
      * fix conflict of RoiAlign and MMCVRoiAlign
      
      * fix for lint
      
      * fix test tensorrt module
      
      * test_tensorrt move import to test func
      
      * add except error type
      
      * add tensorrt to setup.cfg
      
      * code format with yapf
      
      * fix for clang-format
      
      * move tensorrt_utils to mmcv/tensorrt, add comments, better test module
      
      * fix line endings, docformatter
      
      * isort init, remove trailing whitespace
      
      * add except type
      
      * fix setup.py
      
      * put import extension inside trt setup
      
      * change c++ guard, update pytest script, better setup, etc
      
      * sort import with isort
      
      * sort import with isort
      
      * move init of plugin lib to init_plugins.py
      
      * add scatternd, nms plugin (WIP)
      
      * fix bugs of trt_nms
      
      * add trt nms test module
      
      * fix bugs of scatternd
      
      * code optimize, add comment about nms kernel
      
      * fix transform_if bug of t...
      1ee5315e
  28. 22 Feb, 2021 1 commit
    • ftbabi's avatar
      Add GELU activation function (#843) · 8735815a
      ftbabi authored
      * Support GELU activation function
      
      * Support different torch version
      
      * Fix bug in importing TORCH_VERSION
      
      * Wrap GELU module for PyTorch 1.3.x
      
      * Wrap GELU module for PyTorch 1.3.x
      8735815a
  29. 21 Feb, 2021 2 commits
  30. 20 Feb, 2021 2 commits