├── .clang-format ├── .codespell_ignore.txt ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── 1-bug-report.yml │ ├── 2-feature_request.yaml │ ├── 3-documentation.yml │ └── config.yml ├── md-link-config.json ├── pull_request_template.md ├── release.yml ├── scripts │ ├── check_index_rst.py │ ├── doc_link_checker.py │ ├── gen_reg_summary.py │ ├── linux │ │ ├── build.sh │ │ ├── convert_onnxruntime.sh │ │ ├── install_onnxruntime.sh │ │ ├── install_python.sh │ │ └── test_full_pipeline.sh │ ├── prepare_reg_test.py │ ├── test_java_demo.py │ ├── test_onnx2ncnn.py │ └── windows │ │ ├── install_onnxruntime.ps1 │ │ ├── install_opencv.ps1 │ │ └── test_full_pipeline.ps1 └── workflows │ ├── backend-ascend.yml │ ├── backend-coreml.yml │ ├── backend-ncnn.yml │ ├── backend-ort.yml │ ├── backend-pplnn.yml │ ├── backend-rknn.yml │ ├── backend-snpe.yml │ ├── backend-torchscript.yml │ ├── build.yml │ ├── docker.yml │ ├── java_api.yml │ ├── lint.yml │ ├── linux-riscv64-gcc.yml │ ├── prebuild.yml │ ├── publish.yml │ ├── regression-test.yml │ ├── rust_api.yml │ └── stale.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── CITATION.cff ├── CMakeLists.txt ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_zh-CN.md ├── cmake ├── MMDeploy.cmake ├── MMDeployConfig.cmake.in ├── cuda.cmake ├── filesystem.cmake ├── loader.cpp.in ├── modules │ ├── FindCUDNN.cmake │ ├── FindONNXRUNTIME.cmake │ ├── FindTENSORRT.cmake │ └── FindTVM.cmake ├── opencv.cmake ├── post-install.cmake ├── stacktrace.cmake ├── tensorrt.cmake └── toolchains │ ├── aarch64-linux-gnu.cmake │ ├── arm-linux-gnueabihf.cmake │ ├── riscv64-linux-gnu.cmake │ ├── riscv64-unknown-linux-gnu.cmake │ └── rknpu2-linux-gnu.cmake ├── configs ├── _base_ │ ├── backends │ │ ├── ascend.py │ │ ├── coreml.py │ │ ├── ncnn-int8.py │ │ ├── ncnn.py │ │ ├── onnxruntime-fp16.py │ │ ├── onnxruntime.py │ │ ├── openvino.py │ │ ├── pplnn.py │ │ ├── rknn.py │ │ ├── sdk.py │ │ ├── snpe.py │ │ ├── tensorrt-fp16.py │ │ ├── tensorrt-int8.py │ │ ├── tensorrt.py │ │ ├── torchscript.py │ │ ├── tvm.py │ │ └── vacc.py │ ├── onnx_config.py │ └── torchscript_config.py ├── mmaction │ └── video-recognition │ │ ├── video-recognition_2d_dynamic.py │ │ ├── video-recognition_2d_tensorrt_static-224x224.py │ │ ├── video-recognition_3d_dynamic.py │ │ ├── video-recognition_3d_tensorrt_static-256x256.py │ │ ├── video-recognition_onnxruntime-fp16_static.py │ │ ├── video-recognition_onnxruntime_static.py │ │ ├── video-recognition_static.py │ │ └── video-recognition_torchscript.py ├── mmagic │ └── super-resolution │ │ ├── super-resolution_dynamic.py │ │ ├── super-resolution_ncnn_dynamic.py │ │ ├── super-resolution_onnxruntime-fp16_dynamic.py │ │ ├── super-resolution_onnxruntime_dynamic.py │ │ ├── super-resolution_onnxruntime_static.py │ │ ├── super-resolution_openvino_dynamic-256x256.py │ │ ├── super-resolution_pplnn_dynamic-32x32.py │ │ ├── super-resolution_sdk_dynamic.py │ │ ├── super-resolution_snpe_static-256x256.py │ │ ├── super-resolution_static.py │ │ ├── super-resolution_tensorrt-fp16_dynamic-32x32-512x512.py │ │ ├── super-resolution_tensorrt-fp16_static-256x256.py │ │ ├── super-resolution_tensorrt-int8_dynamic-32x32-512x512.py │ │ ├── super-resolution_tensorrt-int8_static-256x256.py │ │ ├── super-resolution_tensorrt_dynamic-32x32-512x512.py │ │ ├── super-resolution_tensorrt_static-256x256.py │ │ └── super-resolution_torchscript.py ├── mmdet │ ├── _base_ │ │ ├── base_coreml_static-800x1344.py │ │ ├── base_dynamic.py │ │ ├── base_instance-seg_dynamic.py │ │ ├── base_instance-seg_static.py │ │ ├── base_instance-seg_torchscript.py │ │ ├── base_openvino_dynamic-300x300.py │ │ ├── base_openvino_dynamic-640x640.py │ │ ├── base_openvino_dynamic-800x1344.py │ │ ├── base_panoptic-seg_static.py │ │ ├── base_static.py │ │ ├── base_tensorrt-fp16_dynamic-300x300-512x512.py │ │ ├── base_tensorrt-fp16_dynamic-320x320-1344x1344.py │ │ ├── base_tensorrt-fp16_static-800x1344.py │ │ ├── base_tensorrt-int8_dynamic-300x300-512x512.py │ │ ├── base_tensorrt-int8_dynamic-320x320-1344x1344.py │ │ ├── base_tensorrt-int8_static-800x1344.py │ │ ├── base_tensorrt_dynamic-300x300-512x512.py │ │ ├── base_tensorrt_dynamic-320x320-1344x1344.py │ │ ├── base_tensorrt_static-300x300.py │ │ ├── base_tensorrt_static-800x1344.py │ │ └── base_torchscript.py │ ├── detection │ │ ├── detection_ascend_dynamic-800x1344.py │ │ ├── detection_ascend_static-640x640.py │ │ ├── detection_coreml_static-800x1344.py │ │ ├── detection_onnxruntime-fp16_dynamic.py │ │ ├── detection_onnxruntime_dynamic.py │ │ ├── detection_onnxruntime_static.py │ │ ├── detection_openvino_dynamic-300x300.py │ │ ├── detection_openvino_dynamic-640x640.py │ │ ├── detection_openvino_dynamic-800x1344.py │ │ ├── detection_pplnn_dynamic-800x1344.py │ │ ├── detection_rknn-fp16_static-320x320.py │ │ ├── detection_rknn-int8_static-320x320.py │ │ ├── detection_rknn-int8_static-640x640.py │ │ ├── detection_sdk_dynamic.py │ │ ├── detection_tensorrt-fp16_dynamic-300x300-512x512.py │ │ ├── detection_tensorrt-fp16_dynamic-320x320-1344x1344.py │ │ ├── detection_tensorrt-fp16_dynamic-64x64-608x608.py │ │ ├── detection_tensorrt-fp16_dynamic-64x64-800x800.py │ │ ├── detection_tensorrt-fp16_static-320x320.py │ │ ├── detection_tensorrt-fp16_static-800x1344.py │ │ ├── detection_tensorrt-int8_dynamic-300x300-512x512.py │ │ ├── detection_tensorrt-int8_dynamic-320x320-1344x1344.py │ │ ├── detection_tensorrt-int8_dynamic-64x64-608x608.py │ │ ├── detection_tensorrt-int8_dynamic-64x64-800x800.py │ │ ├── detection_tensorrt-int8_static-320x320.py │ │ ├── detection_tensorrt-int8_static-800x1344.py │ │ ├── detection_tensorrt_dynamic-300x300-512x512.py │ │ ├── detection_tensorrt_dynamic-320x320-1344x1344.py │ │ ├── detection_tensorrt_dynamic-64x64-608x608.py │ │ ├── detection_tensorrt_dynamic-64x64-800x800.py │ │ ├── detection_tensorrt_static-300x300.py │ │ ├── detection_tensorrt_static-320x320.py │ │ ├── detection_tensorrt_static-640x640.py │ │ ├── detection_tensorrt_static-800x1344.py │ │ ├── detection_torchscript.py │ │ ├── detection_tvm-ansor_static-800x1344.py │ │ ├── detection_tvm-autotvm_static-300x300.py │ │ ├── detection_tvm-autotvm_static-800x1344.py │ │ ├── detection_vacc-fp16_static_416x416.py │ │ ├── detection_vacc-int8_static_416x416.py │ │ ├── single-stage_ncnn-fp16_static-320x320.py │ │ ├── single-stage_ncnn_dynamic.py │ │ ├── single-stage_ncnn_static-300x300.py │ │ ├── single-stage_ncnn_static-320x320.py │ │ ├── single-stage_ncnn_static-416x416.py │ │ ├── single-stage_ncnn_static-640x640.py │ │ ├── single-stage_ncnn_static-800x1344.py │ │ ├── two-stage_partition_ncnn_static.py │ │ └── yolov3_partition_onnxruntime_static.py │ ├── instance-seg │ │ ├── instance-seg_onnxruntime-fp16_dynamic.py │ │ ├── instance-seg_onnxruntime_dynamic.py │ │ ├── instance-seg_onnxruntime_static.py │ │ ├── instance-seg_openvino_dynamic-800x1344.py │ │ ├── instance-seg_pplnn_dynamic-800x1344.py │ │ ├── instance-seg_rtmdet-ins_onnxruntime_static-640x640.py │ │ ├── instance-seg_rtmdet-ins_tensorrt_static-640x640.py │ │ ├── instance-seg_sdk_dynamic.py │ │ ├── instance-seg_tensorrt-fp16_dynamic-320x320-1344x1344.py │ │ ├── instance-seg_tensorrt-fp16_static-800x1344.py │ │ ├── instance-seg_tensorrt-int8_dynamic-320x320-1344x1344.py │ │ ├── instance-seg_tensorrt-int8_static-800x1344.py │ │ ├── instance-seg_tensorrt_dynamic-320x320-1344x1344.py │ │ ├── instance-seg_tensorrt_static-800x1344.py │ │ ├── instance-seg_torchscript.py │ │ ├── instance-seg_tvm-ansor_static-800x1344.py │ │ └── instance-seg_tvm-autotvm_static-800x1344.py │ └── panoptic-seg │ │ ├── panoptic-seg_maskformer_onnxruntime_dynamic.py │ │ ├── panoptic-seg_maskformer_onnxruntime_static-800x1344.py │ │ ├── panoptic-seg_maskformer_tensorrt_dynamic-320x512-1344x1344.py │ │ ├── panoptic-seg_maskformer_tensorrt_static-800x1344.py │ │ ├── panoptic-seg_panoptic-fpn_onnxruntime_dynamic.py │ │ └── panoptic-seg_panoptic-fpn_tensorrt_dynamic-352x512-1344x1344.py ├── mmdet3d │ ├── mono-detection │ │ ├── mono-detection_dynamic.py │ │ ├── mono-detection_onnxruntime-fp16_dynamic.py │ │ ├── mono-detection_onnxruntime_dynamic.py │ │ ├── mono-detection_static.py │ │ └── mono-detection_tensorrt_dynamic-320x320-1344x1344.py │ └── voxel-detection │ │ ├── voxel-detection_dynamic.py │ │ ├── voxel-detection_onnxruntime-fp16_dynamic.py │ │ ├── voxel-detection_onnxruntime_dynamic.py │ │ ├── voxel-detection_openvino_dynamic-kitti-32x4.py │ │ ├── voxel-detection_openvino_dynamic-nus-20x5.py │ │ ├── voxel-detection_openvino_dynamic-nus-64x4.py │ │ ├── voxel-detection_static.py │ │ ├── voxel-detection_tensorrt_dynamic-kitti-32x4.py │ │ ├── voxel-detection_tensorrt_dynamic-nus-20x5.py │ │ └── voxel-detection_tensorrt_dynamic-nus-64x4.py ├── mmocr │ ├── text-detection │ │ ├── text-detection_ascend_dynamic-640x640-1280x1280.py │ │ ├── text-detection_ascend_static-640x640.py │ │ ├── text-detection_coreml_static-512x512.py │ │ ├── text-detection_dynamic.py │ │ ├── text-detection_mrcnn_onnxruntime_dynamic.py │ │ ├── text-detection_mrcnn_tensorrt-fp16_dynamic-320x320-2240x2240.py │ │ ├── text-detection_mrcnn_tensorrt-int8_dynamic-320x320-2240x2240.py │ │ ├── text-detection_mrcnn_tensorrt_dynamic-320x320-2240x2240.py │ │ ├── text-detection_mrcnn_torchscript.py │ │ ├── text-detection_ncnn-int8_static.py │ │ ├── text-detection_ncnn_static.py │ │ ├── text-detection_onnxruntime-fp16_dynamic.py │ │ ├── text-detection_onnxruntime_dynamic.py │ │ ├── text-detection_onnxruntime_static.py │ │ ├── text-detection_openvino_dynamic-640x640.py │ │ ├── text-detection_pplnn_dynamic-640x640.py │ │ ├── text-detection_sdk_dynamic.py │ │ ├── text-detection_snpe_static.py │ │ ├── text-detection_static.py │ │ ├── text-detection_tensorrt-fp16_dynamic-320x320-2240x2240.py │ │ ├── text-detection_tensorrt-fp16_static-512x512.py │ │ ├── text-detection_tensorrt-int8_dynamic-320x320-2240x2240.py │ │ ├── text-detection_tensorrt-int8_static-512x512.py │ │ ├── text-detection_tensorrt_dynamic-320x320-2240x2240.py │ │ ├── text-detection_tensorrt_static-512x512.py │ │ └── text-detection_torchscript.py │ └── text-recognition │ │ ├── text-recognition_dynamic.py │ │ ├── text-recognition_ncnn_static.py │ │ ├── text-recognition_onnxruntime-fp16_dynamic.py │ │ ├── text-recognition_onnxruntime_dynamic.py │ │ ├── text-recognition_onnxruntime_static.py │ │ ├── text-recognition_pplnn_dynamic-1x32x32.py │ │ ├── text-recognition_sdk_dynamic.py │ │ ├── text-recognition_static.py │ │ ├── text-recognition_tensorrt-fp16_dynamic-1x32x32-1x32x640.py │ │ ├── text-recognition_tensorrt-fp16_dynamic-32x32-32x640.py │ │ ├── text-recognition_tensorrt-fp16_dynamic-48x64-48x640.py │ │ ├── text-recognition_tensorrt-fp16_static-1x32x32.py │ │ ├── text-recognition_tensorrt-fp16_static-32x128.py │ │ ├── text-recognition_tensorrt-fp16_static-32x32.py │ │ ├── text-recognition_tensorrt-int8_dynamic-1x32x32-1x32x640.py │ │ ├── text-recognition_tensorrt-int8_dynamic-32x32-32x640.py │ │ ├── text-recognition_tensorrt-int8_dynamic-48x64-48x640.py │ │ ├── text-recognition_tensorrt-int8_static-1x32x32.py │ │ ├── text-recognition_tensorrt-int8_static-32x128.py │ │ ├── text-recognition_tensorrt-int8_static-32x32.py │ │ ├── text-recognition_tensorrt_dynamic-1x32x32-1x32x640.py │ │ ├── text-recognition_tensorrt_dynamic-32x32-32x640.py │ │ ├── text-recognition_tensorrt_dynamic-48x64-48x640.py │ │ ├── text-recognition_tensorrt_static-1x32x32.py │ │ ├── text-recognition_tensorrt_static-32x128.py │ │ ├── text-recognition_tensorrt_static-32x32.py │ │ └── text-recognition_torchscript.py ├── mmpose │ ├── pose-detection_ncnn-int8_static-256x256.py │ ├── pose-detection_ncnn_static-256x192.py │ ├── pose-detection_ncnn_static-256x256.py │ ├── pose-detection_onnxruntime-fp16_static.py │ ├── pose-detection_onnxruntime_static.py │ ├── pose-detection_openvino_static-256x192.py │ ├── pose-detection_openvino_static-256x256.py │ ├── pose-detection_pplnn_static-256x192.py │ ├── pose-detection_rknn-fp16_static-256x192.py │ ├── pose-detection_rknn-fp16_static-256x256.py │ ├── pose-detection_rknn-int8_static-256x192.py │ ├── pose-detection_rknn-int8_static-256x256.py │ ├── pose-detection_rtmo_onnxruntime_dynamic.py │ ├── pose-detection_rtmo_tensorrt-fp16_dynamic-640x640.py │ ├── pose-detection_sdk_static-256x192.py │ ├── pose-detection_simcc_coreml_static-256x192.py │ ├── pose-detection_simcc_ncnn-fp16_static-256x192.py │ ├── pose-detection_simcc_ncnn_static-256x192.py │ ├── pose-detection_simcc_onnxruntime-fp16_dynamic.py │ ├── pose-detection_simcc_onnxruntime_dynamic.py │ ├── pose-detection_simcc_openvino_static-256x192.py │ ├── pose-detection_simcc_rknn-fp16_static-256x192.py │ ├── pose-detection_simcc_rknn-int8_static-256x192.py │ ├── pose-detection_simcc_sdk_static-256x192.py │ ├── pose-detection_simcc_tensorrt-fp16_dynamic-256x192.py │ ├── pose-detection_simcc_tensorrt_dynamic-256x192.py │ ├── pose-detection_snpe_static-256x256.py │ ├── pose-detection_static.py │ ├── pose-detection_tensorrt-fp16_static-256x192.py │ ├── pose-detection_tensorrt-int8_static-256x192.py │ ├── pose-detection_tensorrt_dynamic-256x192.py │ ├── pose-detection_tensorrt_static-256x192.py │ ├── pose-detection_tensorrt_static-256x256.py │ ├── pose-detection_torchscript.py │ ├── pose-detection_yolox-pose_onnxruntime_dynamic.py │ ├── pose-detection_yolox-pose_openvino_dynamic-640x640.py │ └── pose-detection_yolox-pose_tensorrt_dynamic-640x640.py ├── mmpretrain │ ├── classification_ascend_dynamic-224x224-224x224.py │ ├── classification_ascend_static-224x224.py │ ├── classification_coreml_dynamic-224x224-224x224.py │ ├── classification_dynamic.py │ ├── classification_ncnn-int8_static.py │ ├── classification_ncnn_dynamic.py │ ├── classification_ncnn_static.py │ ├── classification_onnxruntime-fp16_dynamic.py │ ├── classification_onnxruntime_dynamic.py │ ├── classification_onnxruntime_static.py │ ├── classification_openvino_dynamic-224x224.py │ ├── classification_pplnn_dynamic-224x224.py │ ├── classification_rknn-fp16_static-224x224.py │ ├── classification_rknn-int8_static-224x224.py │ ├── classification_sdk_dynamic.py │ ├── classification_snpe_static.py │ ├── classification_static.py │ ├── classification_tensorrt-fp16_dynamic-224x224-224x224.py │ ├── classification_tensorrt-fp16_static-224x224.py │ ├── classification_tensorrt-fp16_static-384x384.py │ ├── classification_tensorrt-int8_dynamic-224x224-224x224.py │ ├── classification_tensorrt-int8_static-224x224.py │ ├── classification_tensorrt_dynamic-224x224-224x224.py │ ├── classification_tensorrt_static-224x224.py │ ├── classification_torchscript.py │ ├── classification_tvm-ansor_static-224x224.py │ ├── classification_tvm-autotvm-int8_static-224x224.py │ ├── classification_tvm-autotvm_static-224x224.py │ ├── classification_vacc-fp16_static.py │ └── classification_vacc-int8_static.py ├── mmrotate │ ├── rotated-detection_onnxruntime-fp16_dynamic.py │ ├── rotated-detection_onnxruntime_dynamic.py │ ├── rotated-detection_onnxruntime_static.py │ ├── rotated-detection_sdk_dynamic.py │ ├── rotated-detection_static.py │ ├── rotated-detection_tensorrt-fp16_dynamic-320x320-1024x1024.py │ ├── rotated-detection_tensorrt-fp16_static-1024x1024.py │ └── rotated-detection_tensorrt_dynamic-320x320-1024x1024.py └── mmseg │ ├── segmentation_ascend_static-1024x2048.py │ ├── segmentation_ascend_static-512x1024.py │ ├── segmentation_coreml_static-512x1024.py │ ├── segmentation_dynamic.py │ ├── segmentation_ncnn_static-1024x2048.py │ ├── segmentation_ncnn_static-512x512.py │ ├── segmentation_onnxruntime-fp16_dynamic.py │ ├── segmentation_onnxruntime_dynamic.py │ ├── segmentation_onnxruntime_static-1024x2048.py │ ├── segmentation_onnxruntime_static-512x512.py │ ├── segmentation_openvino_dynamic-1024x2048.py │ ├── segmentation_openvino_static-1024x2048.py │ ├── segmentation_openvino_static-512x512.py │ ├── segmentation_pplnn_dynamic-1024x2048.py │ ├── segmentation_pplnn_dynamic-512x1024.py │ ├── segmentation_pplnn_static-1024x2048.py │ ├── segmentation_pplnn_static-512x1024.py │ ├── segmentation_rknn-fp16_static-320x320.py │ ├── segmentation_rknn-int8_static-320x320.py │ ├── segmentation_sdk_dynamic.py │ ├── segmentation_snpe_static-512x1024.py │ ├── segmentation_static.py │ ├── segmentation_tensorrt-fp16_dynamic-512x1024-2048x2048.py │ ├── segmentation_tensorrt-fp16_static-1024x1024.py │ ├── segmentation_tensorrt-fp16_static-1024x2048.py │ ├── segmentation_tensorrt-fp16_static-512x1024.py │ ├── segmentation_tensorrt-fp16_static-512x512.py │ ├── segmentation_tensorrt-int8_dynamic-512x1024-2048x2048.py │ ├── segmentation_tensorrt-int8_static-1024x1024.py │ ├── segmentation_tensorrt-int8_static-1024x2048.py │ ├── segmentation_tensorrt-int8_static-512x1024.py │ ├── segmentation_tensorrt-int8_static-512x512.py │ ├── segmentation_tensorrt_dynamic-512x1024-2048x2048.py │ ├── segmentation_tensorrt_static-1024x1024.py │ ├── segmentation_tensorrt_static-1024x2048.py │ ├── segmentation_tensorrt_static-512x1024.py │ ├── segmentation_tensorrt_static-512x512.py │ ├── segmentation_torchscript.py │ ├── segmentation_tvm-ansor_static-512x1024.py │ ├── segmentation_tvm-autotvm_static-512x1024.py │ ├── segmentation_vacc-fp16_static_512x512.py │ └── segmentation_vacc-int8_static_512x512.py ├── csrc └── mmdeploy │ ├── CMakeLists.txt │ ├── apis │ ├── CMakeLists.txt │ ├── c │ │ ├── CMakeLists.txt │ │ └── mmdeploy │ │ │ ├── classifier.cpp │ │ │ ├── classifier.h │ │ │ ├── common.cpp │ │ │ ├── common.h │ │ │ ├── common_internal.h │ │ │ ├── detector.cpp │ │ │ ├── detector.h │ │ │ ├── executor.cpp │ │ │ ├── executor.h │ │ │ ├── executor_internal.h │ │ │ ├── handle.h │ │ │ ├── model.cpp │ │ │ ├── model.h │ │ │ ├── pipeline.cpp │ │ │ ├── pipeline.h │ │ │ ├── pose_detector.cpp │ │ │ ├── pose_detector.h │ │ │ ├── pose_tracker.cpp │ │ │ ├── pose_tracker.h │ │ │ ├── restorer.cpp │ │ │ ├── restorer.h │ │ │ ├── rotated_detector.cpp │ │ │ ├── rotated_detector.h │ │ │ ├── segmentor.cpp │ │ │ ├── segmentor.h │ │ │ ├── text_detector.cpp │ │ │ ├── text_detector.h │ │ │ ├── text_recognizer.cpp │ │ │ ├── text_recognizer.h │ │ │ ├── video_recognizer.cpp │ │ │ └── video_recognizer.h │ ├── csharp │ │ ├── MMDeploy.sln │ │ ├── MMDeploy │ │ │ ├── .editorconfig │ │ │ ├── APIs │ │ │ │ ├── Classifier.cs │ │ │ │ ├── Context.cs │ │ │ │ ├── Detector.cs │ │ │ │ ├── Device.cs │ │ │ │ ├── DisposableObject.cs │ │ │ │ ├── Model.cs │ │ │ │ ├── PoseDetector.cs │ │ │ │ ├── PoseTracker.cs │ │ │ │ ├── Profiler.cs │ │ │ │ ├── Restorer.cs │ │ │ │ ├── RotatedDetector.cs │ │ │ │ ├── Scheduler.cs │ │ │ │ ├── Segmentor.cs │ │ │ │ ├── TextDetector.cs │ │ │ │ ├── TextRecognizer.cs │ │ │ │ └── common.cs │ │ │ ├── MMDeployCSharp.csproj │ │ │ ├── MMDeployCSharp.props │ │ │ ├── NativeAPIs │ │ │ │ ├── NativeMethods.cs │ │ │ │ └── NativeMethods_c_api.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── README.md │ ├── cxx │ │ ├── CMakeLists.txt │ │ └── mmdeploy │ │ │ ├── classifier.hpp │ │ │ ├── common.hpp │ │ │ ├── detector.hpp │ │ │ ├── pipeline.hpp │ │ │ ├── pose_detector.hpp │ │ │ ├── pose_tracker.hpp │ │ │ ├── restorer.hpp │ │ │ ├── rotated_detector.hpp │ │ │ ├── segmentor.hpp │ │ │ ├── text_detector.hpp │ │ │ ├── text_recognizer.hpp │ │ │ └── video_recognizer.hpp │ ├── java │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── mmdeploy │ │ │ ├── Classifier.java │ │ │ ├── Context.java │ │ │ ├── DataType.java │ │ │ ├── Detector.java │ │ │ ├── Device.java │ │ │ ├── InstanceMask.java │ │ │ ├── Mat.java │ │ │ ├── Model.java │ │ │ ├── PixelFormat.java │ │ │ ├── PointF.java │ │ │ ├── PoseDetector.java │ │ │ ├── PoseTracker.java │ │ │ ├── Profiler.java │ │ │ ├── Rect.java │ │ │ ├── Restorer.java │ │ │ ├── RotatedDetector.java │ │ │ ├── Scheduler.java │ │ │ ├── Segmentor.java │ │ │ ├── TextDetector.java │ │ │ └── TextRecognizer.java │ │ └── native │ │ │ ├── CMakeLists.txt │ │ │ ├── common.h │ │ │ ├── mmdeploy_Classifier.cpp │ │ │ ├── mmdeploy_Classifier.h │ │ │ ├── mmdeploy_Context.cpp │ │ │ ├── mmdeploy_Context.h │ │ │ ├── mmdeploy_Detector.cpp │ │ │ ├── mmdeploy_Detector.h │ │ │ ├── mmdeploy_Device.cpp │ │ │ ├── mmdeploy_Device.h │ │ │ ├── mmdeploy_Model.cpp │ │ │ ├── mmdeploy_Model.h │ │ │ ├── mmdeploy_PoseDetector.cpp │ │ │ ├── mmdeploy_PoseDetector.h │ │ │ ├── mmdeploy_PoseTracker.cpp │ │ │ ├── mmdeploy_PoseTracker.h │ │ │ ├── mmdeploy_Profiler.cpp │ │ │ ├── mmdeploy_Profiler.h │ │ │ ├── mmdeploy_Restorer.cpp │ │ │ ├── mmdeploy_Restorer.h │ │ │ ├── mmdeploy_RotatedDetector.cpp │ │ │ ├── mmdeploy_RotatedDetector.h │ │ │ ├── mmdeploy_Scheduler.cpp │ │ │ ├── mmdeploy_Scheduler.h │ │ │ ├── mmdeploy_Segmentor.cpp │ │ │ ├── mmdeploy_Segmentor.h │ │ │ ├── mmdeploy_TextDetector.cpp │ │ │ ├── mmdeploy_TextDetector.h │ │ │ ├── mmdeploy_TextRecognizer.cpp │ │ │ └── mmdeploy_TextRecognizer.h │ └── python │ │ ├── CMakeLists.txt │ │ ├── classifier.cpp │ │ ├── common.cpp │ │ ├── common.h │ │ ├── detector.cpp │ │ ├── executor.cpp │ │ ├── internal.cpp │ │ ├── pipeline.cpp │ │ ├── pose_detector.cpp │ │ ├── pose_tracker.cpp │ │ ├── restorer.cpp │ │ ├── rotated_detector.cpp │ │ ├── segmentor.cpp │ │ ├── text_detector.cpp │ │ ├── text_recognizer.cpp │ │ └── video_recognizer.cpp │ ├── archive │ ├── CMakeLists.txt │ ├── json_archive.h │ └── value_archive.h │ ├── backend_ops │ ├── CMakeLists.txt │ ├── common │ │ └── modulated_deform_conv │ │ │ ├── common_cuda_helper.cuh │ │ │ ├── modulated_deform_conv_cpu.h │ │ │ └── modulated_deform_conv_cuda.cuh │ ├── ncnn │ │ ├── CMakeLists.txt │ │ ├── onnx2ncnn │ │ │ ├── CMakeLists.txt │ │ │ ├── fuse_pass.cpp │ │ │ ├── fuse_pass.h │ │ │ ├── onnx.proto │ │ │ ├── onnx2ncnn.cpp │ │ │ ├── shape_inference.cpp │ │ │ ├── shape_inference.h │ │ │ └── utils.h │ │ ├── ops │ │ │ ├── CMakeLists.txt │ │ │ ├── constantofshape │ │ │ │ ├── constantofshape.cpp │ │ │ │ └── constantofshape.h │ │ │ ├── expand │ │ │ │ ├── expand.cpp │ │ │ │ └── expand.h │ │ │ ├── gather │ │ │ │ ├── gather.cpp │ │ │ │ └── gather.h │ │ │ ├── ncnn_ops_definer.h │ │ │ ├── ncnn_ops_register.cpp │ │ │ ├── ncnn_ops_register.h │ │ │ ├── shape │ │ │ │ ├── shape.cpp │ │ │ │ └── shape.h │ │ │ ├── tensorslice │ │ │ │ ├── tensorslice.cpp │ │ │ │ └── tensorslice.h │ │ │ └── topk │ │ │ │ ├── topk.cpp │ │ │ │ └── topk.h │ │ └── pyncnn_ext │ │ │ ├── CMakeLists.txt │ │ │ └── ncnn_ext.cpp │ ├── onnxruntime │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── onnxruntime_register.h │ │ │ ├── onnxruntime_session_options_config_keys.h │ │ │ ├── ort_utils.cpp │ │ │ └── ort_utils.h │ │ ├── grid_sample │ │ │ ├── grid_sample.cpp │ │ │ └── grid_sample.h │ │ ├── modulated_deform_conv │ │ │ ├── modulated_deform_conv.cpp │ │ │ └── modulated_deform_conv.h │ │ ├── nms_match │ │ │ ├── nms_match.cpp │ │ │ └── nms_match.h │ │ ├── nms_rotated │ │ │ ├── nms_rotated.cpp │ │ │ └── nms_rotated.h │ │ ├── onnxruntime_register.cpp │ │ └── roi_align_rotated │ │ │ ├── roi_align_rotated.cpp │ │ │ └── roi_align_rotated.h │ ├── tensorrt │ │ ├── CMakeLists.txt │ │ ├── batched_nms │ │ │ ├── trt_batched_nms.cpp │ │ │ └── trt_batched_nms.hpp │ │ ├── batched_rotated_nms │ │ │ ├── trt_batched_rotated_nms.cpp │ │ │ └── trt_batched_rotated_nms.hpp │ │ ├── bicubic_interpolate │ │ │ ├── trt_bicubic_interpolate.cpp │ │ │ ├── trt_bicubic_interpolate.hpp │ │ │ ├── trt_bicubic_interpolate_kernel.cu │ │ │ └── trt_bicubic_interpolate_kernel.hpp │ │ ├── common │ │ │ ├── common_cuda_helper.hpp │ │ │ ├── nms │ │ │ │ ├── batched_nms_kernel.hpp │ │ │ │ ├── cub_helper.h │ │ │ │ └── kernel.h │ │ │ ├── trt_plugin_base.hpp │ │ │ ├── trt_plugin_helper.hpp │ │ │ └── trt_serialize.hpp │ │ ├── common_impl │ │ │ ├── nms │ │ │ │ ├── allClassNMS.cu │ │ │ │ ├── allClassRotatedNMS.cu │ │ │ │ ├── batched_nms_kernel.cpp │ │ │ │ ├── gatherNMSOutputs.cu │ │ │ │ ├── kernel.cu │ │ │ │ ├── permuteData.cu │ │ │ │ ├── sortScoresPerClass.cu │ │ │ │ └── sortScoresPerImage.cu │ │ │ └── trt_cuda_helper.cu │ │ ├── deform_conv │ │ │ ├── trt_deform_conv.cpp │ │ │ ├── trt_deform_conv.hpp │ │ │ ├── trt_deform_conv_kernel.cu │ │ │ ├── trt_deform_conv_kernel.cuh │ │ │ └── trt_deform_conv_kernel.hpp │ │ ├── gather_topk │ │ │ ├── gather_topk.cpp │ │ │ ├── gather_topk.hpp │ │ │ ├── gather_topk_kernel.cu │ │ │ └── gather_topk_kernel.hpp │ │ ├── grid_priors │ │ │ ├── trt_grid_priors.cpp │ │ │ ├── trt_grid_priors.hpp │ │ │ ├── trt_grid_priors_kernel.cu │ │ │ └── trt_grid_priors_kernel.hpp │ │ ├── grid_sampler │ │ │ ├── trt_grid_sampler.cpp │ │ │ ├── trt_grid_sampler.hpp │ │ │ ├── trt_grid_sampler_kernel.cu │ │ │ └── trt_grid_sampler_kernel.hpp │ │ ├── instance_norm │ │ │ ├── trt_instance_norm.cpp │ │ │ └── trt_instance_norm.hpp │ │ ├── modulated_deform_conv │ │ │ ├── trt_modulated_deform_conv.cpp │ │ │ ├── trt_modulated_deform_conv.hpp │ │ │ ├── trt_modulated_deform_conv_kernel.cu │ │ │ └── trt_modulated_deform_conv_kernel.hpp │ │ ├── multi_level_roi_align │ │ │ ├── trt_multi_level_roi_align.cpp │ │ │ ├── trt_multi_level_roi_align.hpp │ │ │ ├── trt_multi_level_roi_align_kernel.cu │ │ │ └── trt_multi_level_roi_align_kernel.hpp │ │ ├── multi_level_rotated_roi_align │ │ │ ├── trt_multi_level_rotated_roi_align.cpp │ │ │ ├── trt_multi_level_rotated_roi_align.hpp │ │ │ ├── trt_multi_level_rotated_roi_align_kernel.cu │ │ │ └── trt_multi_level_rotated_roi_align_kernel.hpp │ │ ├── multi_scale_deform_attn │ │ │ ├── trt_ms_deform_attn.cpp │ │ │ ├── trt_ms_deform_attn.hpp │ │ │ ├── trt_ms_deform_attn_kernel.cu │ │ │ ├── trt_ms_deform_attn_kernel.cuh │ │ │ └── trt_ms_deform_attn_kernel.hpp │ │ ├── roi_align │ │ │ ├── trt_roi_align.cpp │ │ │ ├── trt_roi_align.hpp │ │ │ ├── trt_roi_align_kernel.cu │ │ │ └── trt_roi_align_kernel.hpp │ │ ├── scaled_dot_product_attention │ │ │ ├── scaled_dot_product_attention.cpp │ │ │ ├── scaled_dot_product_attention.hpp │ │ │ ├── scaled_dot_product_attention_kernel.cu │ │ │ └── scaled_dot_product_attention_kernel.hpp │ │ └── scatternd │ │ │ ├── trt_scatternd.cpp │ │ │ ├── trt_scatternd.hpp │ │ │ ├── trt_scatternd_kernel.cu │ │ │ └── trt_scatternd_kernel.hpp │ └── torchscript │ │ ├── CMakeLists.txt │ │ ├── ops │ │ ├── CMakeLists.txt │ │ ├── bind.cpp │ │ ├── coreml_nms │ │ │ └── coreml_nms_cpu.cpp │ │ └── modulated_deform_conv │ │ │ ├── modulated_deform_conv_cpu.cpp │ │ │ └── modulated_deform_conv_cuda.cu │ │ └── optimizer │ │ ├── CMakeLists.txt │ │ ├── bind.cpp │ │ ├── ir │ │ ├── subgraph_matcher.cpp │ │ └── subgraph_matcher.h │ │ ├── optimizer.cpp │ │ ├── optimizer.h │ │ └── passes │ │ └── onnx │ │ ├── common_subgraph_elimination.cpp │ │ ├── common_subgraph_elimination.h │ │ ├── flatten_cls_head.cpp │ │ ├── flatten_cls_head.h │ │ ├── fuse_select_assign.cpp │ │ ├── fuse_select_assign.h │ │ ├── merge_shape_concate.cpp │ │ ├── merge_shape_concate.h │ │ ├── onnx_peephole.cpp │ │ ├── onnx_peephole.h │ │ └── utils.h │ ├── codebase │ ├── CMakeLists.txt │ ├── common.h │ ├── mmaction │ │ ├── CMakeLists.txt │ │ ├── base_head.cpp │ │ ├── format_shape.cpp │ │ ├── format_shape.h │ │ ├── mmaction.cpp │ │ └── mmaction.h │ ├── mmcls │ │ ├── CMakeLists.txt │ │ ├── linear_cls.cpp │ │ ├── mmcls.cpp │ │ ├── mmcls.h │ │ └── multi_label_linear_cls.cpp │ ├── mmdet │ │ ├── CMakeLists.txt │ │ ├── base_dense_head.cpp │ │ ├── base_dense_head.h │ │ ├── instance_segmentation.cpp │ │ ├── mmdet.cpp │ │ ├── mmdet.h │ │ ├── object_detection.cpp │ │ ├── object_detection.h │ │ ├── rtmdet_head.cpp │ │ ├── rtmdet_head.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── yolo_head.cpp │ │ └── yolo_head.h │ ├── mmedit │ │ ├── CMakeLists.txt │ │ ├── mmedit.cpp │ │ ├── mmedit.h │ │ └── restorer.cpp │ ├── mmocr │ │ ├── CMakeLists.txt │ │ ├── attention_convertor.cpp │ │ ├── base_convertor.cpp │ │ ├── base_convertor.h │ │ ├── contour_expand.cpp │ │ ├── cpu │ │ │ ├── CMakeLists.txt │ │ │ ├── dbnet.cpp │ │ │ ├── panet.cpp │ │ │ └── psenet.cpp │ │ ├── crnn.cpp │ │ ├── cuda │ │ │ ├── CMakeLists.txt │ │ │ ├── connected_component.cu │ │ │ ├── connected_component.h │ │ │ ├── dbnet.cpp │ │ │ ├── panet.cpp │ │ │ ├── psenet.cpp │ │ │ ├── utils.cu │ │ │ └── utils.h │ │ ├── dbnet.cpp │ │ ├── dbnet.h │ │ ├── mmocr.cpp │ │ ├── mmocr.h │ │ ├── panet.cpp │ │ ├── panet.h │ │ ├── pixel_group.cpp │ │ ├── psenet.cpp │ │ ├── psenet.h │ │ ├── rescale_to_height.cpp │ │ ├── resize_ocr.cpp │ │ ├── short_scale_aspect_jitter.cpp │ │ └── warp.cpp │ ├── mmpose │ │ ├── CMakeLists.txt │ │ ├── keypoints_from_heatmap.cpp │ │ ├── keypoints_from_regression.cpp │ │ ├── mmpose.cpp │ │ ├── mmpose.h │ │ ├── pose_tracker │ │ │ ├── common.h │ │ │ ├── pipeline.cpp │ │ │ ├── pose_tracker.cpp │ │ │ ├── pose_tracker.h │ │ │ ├── smoothing_filter.cpp │ │ │ ├── smoothing_filter.h │ │ │ ├── track.cpp │ │ │ ├── track.h │ │ │ ├── tracking_filter.cpp │ │ │ ├── tracking_filter.h │ │ │ ├── utils.cpp │ │ │ └── utils.h │ │ ├── simcc_label.cpp │ │ ├── topdown_affine.cpp │ │ └── topdown_get_bbox_center_scale.cpp │ ├── mmrotate │ │ ├── CMakeLists.txt │ │ ├── mmrotate.cpp │ │ ├── mmrotate.h │ │ └── oriented_object_detection.cpp │ └── mmseg │ │ ├── CMakeLists.txt │ │ ├── mmseg.cpp │ │ ├── mmseg.h │ │ └── segment.cpp │ ├── core │ ├── CMakeLists.txt │ ├── archive.h │ ├── device.h │ ├── device_impl.cpp │ ├── device_impl.h │ ├── graph.cpp │ ├── graph.h │ ├── logger.cpp │ ├── logger.h │ ├── macro.h │ ├── mat.cpp │ ├── mat.h │ ├── model.cpp │ ├── model.h │ ├── model_impl.h │ ├── module.cpp │ ├── module.h │ ├── mpl │ │ ├── detected.h │ │ ├── iterator.h │ │ ├── priority_tag.h │ │ ├── span.h │ │ ├── static_any.h │ │ ├── structure.h │ │ └── type_traits.h │ ├── net.cpp │ ├── net.h │ ├── operator.cpp │ ├── operator.h │ ├── profiler.cpp │ ├── profiler.h │ ├── registry.cpp │ ├── registry.h │ ├── serialization.h │ ├── status_code.cpp │ ├── status_code.h │ ├── tensor.cpp │ ├── tensor.h │ ├── types.h │ ├── utils │ │ ├── device_utils.cpp │ │ ├── device_utils.h │ │ ├── filesystem.h │ │ ├── formatter.cpp │ │ ├── formatter.h │ │ ├── source_location.h │ │ ├── stacktrace.cpp │ │ └── stacktrace.h │ └── value.h │ ├── device │ ├── CMakeLists.txt │ ├── acl │ │ ├── CMakeLists.txt │ │ └── acl_device.cpp │ ├── cpu │ │ ├── CMakeLists.txt │ │ ├── cpu_device.cpp │ │ └── cpu_device.h │ ├── cuda │ │ ├── CMakeLists.txt │ │ ├── buddy_allocator.h │ │ ├── cuda_device.cpp │ │ ├── cuda_device.h │ │ ├── default_allocator.h │ │ └── linear_allocator.h │ └── device_allocator.h │ ├── execution │ ├── CMakeLists.txt │ ├── bulk.h │ ├── closure.h │ ├── concepts.h │ ├── dynamic_batch.h │ ├── ensure_started.h │ ├── execute.h │ ├── execution.h │ ├── expand.h │ ├── just.h │ ├── let_value.h │ ├── on.h │ ├── run_loop.h │ ├── schedule_from.h │ ├── schedulers │ │ ├── dynamic_batch_scheduler.h │ │ ├── inlined_scheduler.h │ │ ├── intrusive_queue.h │ │ ├── registry.h │ │ ├── schedulers.cpp │ │ ├── single_thread_context.h │ │ ├── static_thread_pool.h │ │ └── timed_single_thread_context.h │ ├── split.h │ ├── start_detached.h │ ├── submit.h │ ├── sync_wait.h │ ├── tag_invoke.h │ ├── then.h │ ├── transfer.h │ ├── transfer_just.h │ ├── type_erased.h │ ├── type_traits.h │ ├── utility.h │ ├── when_all.h │ └── when_all_value.h │ ├── experimental │ └── module_adapter.h │ ├── graph │ ├── CMakeLists.txt │ ├── common.h │ ├── cond.cpp │ ├── cond.h │ ├── flattened.h │ ├── inference.cpp │ ├── inference.h │ ├── pipeline.cpp │ ├── pipeline.h │ ├── static_router.cpp │ ├── static_router.h │ ├── task.cpp │ └── task.h │ ├── model │ ├── CMakeLists.txt │ ├── directory_model_impl.cpp │ └── zip_model_impl.cpp │ ├── net │ ├── CMakeLists.txt │ ├── acl │ │ ├── CMakeLists.txt │ │ ├── acl_net.cpp │ │ └── acl_net.h │ ├── coreml │ │ ├── CMakeLists.txt │ │ ├── coreml_net.h │ │ └── coreml_net.mm │ ├── ncnn │ │ ├── CMakeLists.txt │ │ ├── ncnn_net.cpp │ │ └── ncnn_net.h │ ├── net_module.cpp │ ├── net_module.h │ ├── openvino │ │ ├── CMakeLists.txt │ │ ├── openvino_net.cpp │ │ └── openvino_net.h │ ├── ort │ │ ├── CMakeLists.txt │ │ ├── ort_net.cpp │ │ └── ort_net.h │ ├── ppl │ │ ├── CMakeLists.txt │ │ ├── ppl_net.cpp │ │ └── ppl_net.h │ ├── rknn │ │ ├── CMakeLists.txt │ │ ├── rknn_net.cpp │ │ └── rknn_net.h │ ├── snpe │ │ ├── CMakeLists.txt │ │ ├── snpe_net.cpp │ │ └── snpe_net.h │ ├── torchscript │ │ ├── CMakeLists.txt │ │ ├── torch_net.cpp │ │ └── torch_net.h │ ├── trt │ │ ├── CMakeLists.txt │ │ ├── trt_net.cpp │ │ └── trt_net.h │ └── tvm │ │ ├── CMakeLists.txt │ │ ├── tvm_net.cpp │ │ └── tvm_net.h │ ├── operation │ ├── CMakeLists.txt │ ├── cpu │ │ ├── CMakeLists.txt │ │ ├── crop.cpp │ │ ├── crop_resize_pad.cpp │ │ ├── cvtcolor.cpp │ │ ├── flip.cpp │ │ ├── hwc2chw.cpp │ │ ├── normalize.cpp │ │ ├── pad.cpp │ │ ├── permute.cpp │ │ ├── resize.cpp │ │ ├── to_float.cpp │ │ └── warp_affine.cpp │ ├── cuda │ │ ├── CMakeLists.txt │ │ ├── cast.cu │ │ ├── crop.cpp │ │ ├── crop.cu │ │ ├── crop_resize_pad.cpp │ │ ├── cvtcolor.cpp │ │ ├── flip.cpp │ │ ├── hwc2chw.cpp │ │ ├── normalize.cpp │ │ ├── normalize.cu │ │ ├── pad.cpp │ │ ├── permute.cpp │ │ ├── permute.cu │ │ ├── permute.h │ │ ├── resize.cpp │ │ ├── to_float.cpp │ │ ├── transpose.cu │ │ └── warp_affine.cpp │ ├── dummy │ │ ├── CMakeLists.txt │ │ └── operations.cpp │ ├── managed.h │ ├── operation.cpp │ ├── operation.h │ ├── vision.cpp │ └── vision.h │ ├── preprocess │ ├── CMakeLists.txt │ ├── elena │ │ ├── CMakeLists.txt │ │ ├── cpu_kernel │ │ │ └── .gitkeep │ │ ├── cuda_kernel │ │ │ └── .gitkeep │ │ ├── elena_registry.cpp │ │ ├── elena_registry.h │ │ └── fused.cpp │ ├── transform │ │ ├── CMakeLists.txt │ │ ├── center_crop.cpp │ │ ├── collect.cpp │ │ ├── compose.cpp │ │ ├── default_format_bundle.cpp │ │ ├── image2tensor.cpp │ │ ├── letter_resize.cpp │ │ ├── lift.cpp │ │ ├── load.cpp │ │ ├── normalize.cpp │ │ ├── pad.cpp │ │ ├── resize.cpp │ │ ├── ten_crop.cpp │ │ ├── three_crop.cpp │ │ ├── tracer.cpp │ │ ├── tracer.h │ │ ├── transform.cpp │ │ └── transform.h │ └── transform_module.cpp │ └── utils │ ├── CMakeLists.txt │ ├── dlpack │ ├── CMakeLists.txt │ ├── dlpack_utils.cpp │ └── dlpack_utils.h │ └── opencv │ ├── CMakeLists.txt │ ├── opencv_utils.cpp │ └── opencv_utils.h ├── demo ├── README.md ├── csharp │ ├── Demo.sln │ ├── README.md │ ├── image_classification │ │ ├── FormDemo.Designer.cs │ │ ├── FormDemo.cs │ │ ├── FormDemo.resx │ │ ├── Program.cs │ │ ├── image_classification.csproj │ │ └── image_classification.csproj.user │ ├── image_restorer │ │ ├── Program.cs │ │ └── image_restorer.csproj │ ├── image_segmentation │ │ ├── Program.cs │ │ └── image_segmentation.csproj │ ├── object_detection │ │ ├── Program.cs │ │ └── object_detection.csproj │ ├── ocr_detection │ │ ├── Program.cs │ │ └── ocr_detection.csproj │ ├── ocr_recognition │ │ ├── Program.cs │ │ └── ocr_recognition.csproj │ ├── pose_detection │ │ ├── Program.cs │ │ └── pose_detection.csproj │ ├── pose_tracker │ │ ├── Program.cs │ │ └── pose_tracker.csproj │ └── rotated_detection │ │ ├── Program.cs │ │ └── rotated_detection.csproj ├── csrc │ ├── CMakeLists.txt │ ├── c │ │ ├── batch_image_classification.cpp │ │ ├── batch_object_detection.cpp │ │ ├── det_cls.cpp │ │ ├── det_pose.cpp │ │ ├── image_classification.cpp │ │ ├── image_restorer.cpp │ │ ├── image_segmentation.cpp │ │ ├── object_detection.cpp │ │ ├── ocr.cpp │ │ ├── pose_detection.cpp │ │ ├── rotated_object_detection.cpp │ │ └── video_recognition.cpp │ └── cpp │ │ ├── classifier.cxx │ │ ├── det_pose.cxx │ │ ├── detector.cxx │ │ ├── pose_detector.cxx │ │ ├── pose_tracker.cxx │ │ ├── pose_tracker_params.h │ │ ├── restorer.cxx │ │ ├── rotated_detector.cxx │ │ ├── segmentor.cxx │ │ ├── text_det_recog.cxx │ │ ├── text_ocr.cxx │ │ ├── utils │ │ ├── argparse.h │ │ ├── mediaio.h │ │ ├── palette.h │ │ ├── skeleton.h │ │ └── visualize.h │ │ └── video_cls.cxx ├── demo_rewrite.py ├── java │ ├── README.md │ ├── build.xml │ └── src │ │ ├── ImageClassification.java │ │ ├── ImageRestorer.java │ │ ├── ImageSegmentation.java │ │ ├── ObjectDetection.java │ │ ├── Ocr.java │ │ ├── PoseDetection.java │ │ ├── PoseTracker.java │ │ ├── RotatedDetection.java │ │ └── Utils.java ├── python │ ├── det_pose.py │ ├── image_classification.py │ ├── image_restorer.py │ ├── image_segmentation.py │ ├── object_detection.py │ ├── ocr.py │ ├── pipeline.py │ ├── pose_detection.py │ ├── pose_tracker.py │ ├── rotated_object_detection.py │ └── video_recognition.py ├── resources │ ├── cityscapes.png │ ├── det.jpg │ ├── face.png │ ├── human-pose.jpg │ ├── original.png │ ├── rewritten.png │ ├── text_det.jpg │ └── text_recog.jpg └── tutorials │ └── tutorials_1.ipynb ├── docker ├── Base │ └── Dockerfile ├── CPU │ └── Dockerfile ├── GPU │ └── Dockerfile ├── Release │ └── Dockerfile └── prebuild │ ├── Dockerfile │ └── Dockerfile.cxx11abi ├── docs ├── cppapi │ └── Doxyfile ├── en │ ├── 01-how-to-build │ │ ├── android.md │ │ ├── build_from_docker.md │ │ ├── build_from_script.md │ │ ├── build_from_source.md │ │ ├── cmake_option.md │ │ ├── cross_build_ncnn_aarch64.md │ │ ├── jetsons.md │ │ ├── linux-x86_64.md │ │ ├── macos-arm64.md │ │ ├── riscv.md │ │ ├── rockchip.md │ │ ├── snpe.md │ │ └── windows.md │ ├── 02-how-to-run │ │ ├── convert_model.md │ │ ├── fuse_transform.md │ │ ├── prebuilt_package_windows.md │ │ ├── profile_model.md │ │ ├── quantize_model.md │ │ ├── useful_tools.md │ │ └── write_config.md │ ├── 03-benchmark │ │ ├── benchmark.md │ │ ├── benchmark_edge.md │ │ ├── benchmark_tvm.md │ │ ├── quantization.md │ │ └── supported_models.md │ ├── 04-supported-codebases │ │ ├── mmaction2.md │ │ ├── mmagic.md │ │ ├── mmdet.md │ │ ├── mmdet3d.md │ │ ├── mmocr.md │ │ ├── mmpose.md │ │ ├── mmpretrain.md │ │ ├── mmrotate.md │ │ └── mmseg.md │ ├── 05-supported-backends │ │ ├── coreml.md │ │ ├── ncnn.md │ │ ├── onnxruntime.md │ │ ├── openvino.md │ │ ├── pplnn.md │ │ ├── rknn.md │ │ ├── snpe.md │ │ ├── tensorrt.md │ │ ├── torchscript.md │ │ ├── tvm.md │ │ └── vacc.md │ ├── 06-custom-ops │ │ ├── ncnn.md │ │ ├── onnxruntime.md │ │ └── tensorrt.md │ ├── 07-developer-guide │ │ ├── add_backend_ops_unittest.md │ │ ├── architecture.md │ │ ├── partition_model.md │ │ ├── regression_test.md │ │ ├── support_new_backend.md │ │ ├── support_new_model.md │ │ └── test_rewritten_models.md │ ├── Makefile │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ ├── mmdeploy-logo.png │ │ │ └── quant_model.png │ ├── api.rst │ ├── appendix │ │ └── cross_build_snpe_service.md │ ├── conf.py │ ├── experimental │ │ └── onnx_optimizer.md │ ├── faq.md │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── sdk_usage │ │ ├── c │ │ │ ├── classifier.rst │ │ │ ├── common.rst │ │ │ ├── detector.rst │ │ │ ├── executor.rst │ │ │ ├── model.rst │ │ │ ├── pipeline.rst │ │ │ ├── pose_detector.rst │ │ │ ├── pose_tracker.rst │ │ │ ├── rotated_detector.rst │ │ │ ├── segmentor.rst │ │ │ ├── text_detector.rst │ │ │ ├── text_recognizer.rst │ │ │ └── video_recognizer.rst │ │ ├── c_api.rst │ │ ├── index.rst │ │ ├── profiler.md │ │ └── quick_start.md │ └── switch_language.md └── zh_cn │ ├── 01-how-to-build │ ├── android.md │ ├── build_from_docker.md │ ├── build_from_script.md │ ├── build_from_source.md │ ├── cmake_option.md │ ├── cross_build_ncnn_aarch64.md │ ├── jetsons.md │ ├── linux-x86_64.md │ ├── macos-arm64.md │ ├── riscv.md │ ├── rockchip.md │ ├── snpe.md │ └── windows.md │ ├── 02-how-to-run │ ├── convert_model.md │ ├── fuse_transform.md │ ├── prebuilt_package_windows.md │ ├── profile_model.md │ ├── quantize_model.md │ ├── useful_tools.md │ └── write_config.md │ ├── 03-benchmark │ ├── benchmark.md │ ├── benchmark_edge.md │ ├── benchmark_tvm.md │ ├── quantization.md │ └── supported_models.md │ ├── 04-supported-codebases │ ├── mmaction2.md │ ├── mmagic.md │ ├── mmdet.md │ ├── mmdet3d.md │ ├── mmocr.md │ ├── mmpose.md │ ├── mmpretrain.md │ ├── mmrotate.md │ └── mmseg.md │ ├── 05-supported-backends │ ├── coreml.md │ ├── ncnn.md │ ├── onnxruntime.md │ ├── openvino.md │ ├── pplnn.md │ ├── rknn.md │ ├── snpe.md │ ├── tensorrt.md │ ├── torchscript.md │ ├── tvm.md │ └── vacc.md │ ├── 06-custom-ops │ ├── ncnn.md │ ├── onnxruntime.md │ └── tensorrt.md │ ├── 07-developer-guide │ ├── add_backend_ops_unittest.md │ ├── architecture.md │ ├── partition_model.md │ ├── regression_test.md │ ├── support_new_backend.md │ ├── support_new_model.md │ └── test_rewritten_models.md │ ├── Makefile │ ├── _static │ ├── css │ │ └── readthedocs.css │ └── image │ │ ├── mmdeploy-logo.png │ │ └── quant_model.png │ ├── api.rst │ ├── appendix │ └── cross_build_snpe_service.md │ ├── conf.py │ ├── experimental │ └── onnx_optimizer.md │ ├── faq.md │ ├── get_started.md │ ├── index.rst │ ├── make.bat │ ├── sdk_usage │ ├── c │ │ ├── classifier.rst │ │ ├── common.rst │ │ ├── detector.rst │ │ ├── executor.rst │ │ ├── model.rst │ │ ├── pipeline.rst │ │ ├── pose_detector.rst │ │ ├── pose_tracker.rst │ │ ├── rotated_detector.rst │ │ ├── segmentor.rst │ │ ├── text_detector.rst │ │ ├── text_recognizer.rst │ │ └── video_recognizer.rst │ ├── c_api.rst │ ├── index.rst │ ├── profiler.md │ └── quick_start.md │ ├── switch_language.md │ └── tutorial │ ├── 01_introduction_to_model_deployment.md │ ├── 02_challenges.md │ ├── 03_pytorch2onnx.md │ ├── 04_onnx_custom_op.md │ ├── 05_onnx_model_editing.md │ ├── 06_introduction_to_tensorrt.md │ └── 07_write_a_plugin.md ├── mmdeploy ├── __init__.py ├── apis │ ├── __init__.py │ ├── ascend │ │ └── __init__.py │ ├── calibration.py │ ├── core │ │ ├── __init__.py │ │ └── pipeline_manager.py │ ├── coreml │ │ └── __init__.py │ ├── extract_model.py │ ├── inference.py │ ├── ncnn │ │ └── __init__.py │ ├── onnx │ │ ├── __init__.py │ │ ├── export.py │ │ ├── optimizer.py │ │ ├── partition.py │ │ └── passes │ │ │ ├── __init__.py │ │ │ └── optimize_onnx.py │ ├── onnxruntime │ │ └── __init__.py │ ├── openvino │ │ ├── __init__.py │ │ └── utils.py │ ├── pplnn │ │ └── __init__.py │ ├── pytorch2onnx.py │ ├── pytorch2torchscript.py │ ├── rknn │ │ └── __init__.py │ ├── sdk │ │ └── __init__.py │ ├── snpe │ │ └── __init__.py │ ├── tensorrt │ │ └── __init__.py │ ├── torch_jit │ │ ├── __init__.py │ │ └── trace.py │ ├── tvm │ │ └── __init__.py │ ├── utils │ │ ├── __init__.py │ │ ├── calibration.py │ │ └── utils.py │ ├── vacc │ │ └── __init__.py │ └── visualize.py ├── backend │ ├── __init__.py │ ├── ascend │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── onnx2ascend.py │ │ ├── utils.py │ │ └── wrapper.py │ ├── base │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── backend_wrapper_registry.py │ │ └── base_wrapper.py │ ├── coreml │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── ops.py │ │ ├── torchscript2coreml.py │ │ └── wrapper.py │ ├── ncnn │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── init_plugins.py │ │ ├── onnx2ncnn.py │ │ ├── quant.py │ │ └── wrapper.py │ ├── onnxruntime │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── init_plugins.py │ │ └── wrapper.py │ ├── openvino │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── onnx2openvino.py │ │ ├── utils.py │ │ └── wrapper.py │ ├── pplnn │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── onnx2pplnn.py │ │ ├── utils.py │ │ └── wrapper.py │ ├── rknn │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── onnx2rknn.py │ │ └── wrapper.py │ ├── sdk │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── export_info.py │ │ ├── tracer.py │ │ └── wrapper.py │ ├── snpe │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── init_plugins.py │ │ ├── onnx2dlc.py │ │ └── wrapper.py │ ├── tensorrt │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── calib_utils.py │ │ ├── init_plugins.py │ │ ├── onnx2tensorrt.py │ │ ├── torch_allocator.py │ │ ├── utils.py │ │ └── wrapper.py │ ├── torchscript │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── init_plugins.py │ │ └── wrapper.py │ ├── tvm │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── onnx2tvm.py │ │ ├── quantize.py │ │ ├── tuner.py │ │ └── wrapper.py │ └── vacc │ │ ├── __init__.py │ │ ├── backend_manager.py │ │ ├── onnx2vacc.py │ │ └── wrapper.py ├── codebase │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ ├── backend_model.py │ │ ├── mmcodebase.py │ │ ├── runner.py │ │ └── task.py │ ├── mmaction │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── mmaction.py │ │ │ ├── video_recognition.py │ │ │ └── video_recognition_model.py │ │ └── models │ │ │ ├── __init__.py │ │ │ └── recognizers │ │ │ ├── __init__.py │ │ │ └── base.py │ ├── mmagic │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── mmagic.py │ │ │ ├── super_resolution.py │ │ │ └── super_resolution_model.py │ │ └── models │ │ │ ├── __init__.py │ │ │ └── base_models │ │ │ ├── __init__.py │ │ │ └── base_edit_model.py │ ├── mmdet │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── model_partition_cfg.py │ │ │ ├── object_detection.py │ │ │ ├── object_detection_model.py │ │ │ └── utils.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── backbones.py │ │ │ ├── dense_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── base_dense_head.py │ │ │ │ ├── centernet_head.py │ │ │ │ ├── condinst_head.py │ │ │ │ ├── detr_head.py │ │ │ │ ├── fovea_head.py │ │ │ │ ├── gfl_head.py │ │ │ │ ├── reppoints_head.py │ │ │ │ ├── rpn_head.py │ │ │ │ ├── rtmdet_head.py │ │ │ │ ├── rtmdet_ins_head.py │ │ │ │ ├── solo_head.py │ │ │ │ ├── solov2_head.py │ │ │ │ ├── yolo_head.py │ │ │ │ └── yolox_head.py │ │ │ ├── detectors │ │ │ │ ├── __init__.py │ │ │ │ ├── base_detr.py │ │ │ │ ├── maskformer.py │ │ │ │ ├── panoptic_two_stage_segmentor.py │ │ │ │ ├── single_stage.py │ │ │ │ ├── single_stage_instance_seg.py │ │ │ │ └── two_stage.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ └── matrix_nms.py │ │ │ ├── necks.py │ │ │ ├── roi_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── bbox_head.py │ │ │ │ ├── cascade_roi_head.py │ │ │ │ ├── fcn_mask_head.py │ │ │ │ ├── htc_roi_head.py │ │ │ │ ├── single_level_roi_extractor.py │ │ │ │ └── standard_roi_head.py │ │ │ ├── seg_heads │ │ │ │ ├── __init__.py │ │ │ │ └── base_semantic_head.py │ │ │ ├── task_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── coders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ │ │ ├── distance_point_bbox_coder.py │ │ │ │ │ └── tblr_bbox_coder.py │ │ │ │ └── prior_generators │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── anchor.py │ │ │ │ │ └── point_generator.py │ │ │ ├── transformer.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── gaussian_target.py │ │ ├── ops │ │ │ ├── __init__.py │ │ │ ├── detection_output.py │ │ │ └── prior_box.py │ │ └── structures │ │ │ ├── __init__.py │ │ │ └── bbox │ │ │ ├── __init__.py │ │ │ └── transforms.py │ ├── mmdet3d │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── mmdet3d.py │ │ │ ├── mono_detection.py │ │ │ ├── mono_detection_model.py │ │ │ ├── voxel_detection.py │ │ │ └── voxel_detection_model.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── mvx_two_stage.py │ │ │ ├── pillar_encode.py │ │ │ ├── pillar_scatter.py │ │ │ └── single_stage_mono3d.py │ ├── mmocr │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── mmocr.py │ │ │ ├── text_detection.py │ │ │ ├── text_detection_model.py │ │ │ ├── text_recognition.py │ │ │ └── text_recognition_model.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── text_detection │ │ │ ├── __init__.py │ │ │ ├── fpn_cat.py │ │ │ ├── heads.py │ │ │ ├── mmdet_wrapper.py │ │ │ └── single_stage_text_detector.py │ │ │ ├── text_recognition │ │ │ ├── __init__.py │ │ │ ├── abi_language_decoder.py │ │ │ ├── base_decoder.py │ │ │ ├── crnn_decoder.py │ │ │ ├── encoder_decoder_recognizer.py │ │ │ ├── lstm_layer.py │ │ │ ├── nrtr_decoder.py │ │ │ ├── sar_decoder.py │ │ │ ├── sar_encoder.py │ │ │ ├── satrn_encoder.py │ │ │ └── transformer_module.py │ │ │ └── utils.py │ ├── mmpose │ │ ├── __init__.py │ │ ├── codecs │ │ │ ├── __init__.py │ │ │ └── post_processing.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── pose_detection.py │ │ │ └── pose_detection_model.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── heads │ │ │ ├── __init__.py │ │ │ ├── mspn_head.py │ │ │ ├── rtmo_head.py │ │ │ ├── simcc_head.py │ │ │ └── yolox_pose_head.py │ │ │ ├── pose_estimators │ │ │ ├── __init__.py │ │ │ └── base.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── rtmcc_block.py │ ├── mmpretrain │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── classification.py │ │ │ └── classification_model.py │ │ └── models │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ └── shufflenet_v2.py │ │ │ ├── classifiers │ │ │ ├── __init__.py │ │ │ └── base.py │ │ │ ├── necks │ │ │ ├── __init__.py │ │ │ └── gap.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── attention.py │ ├── mmrazor │ │ └── deploy │ │ │ ├── __init__.py │ │ │ └── mmrazor.py │ ├── mmrotate │ │ ├── __init__.py │ │ ├── deploy │ │ │ ├── __init__.py │ │ │ ├── rotated_detection.py │ │ │ └── rotated_detection_model.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── dense_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── oriented_rpn_head.py │ │ │ │ └── rotated_rtmdet_head.py │ │ │ ├── roi_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── gv_bbox_head.py │ │ │ │ ├── gv_ratio_roi_head.py │ │ │ │ └── roi_extractors.py │ │ │ └── task_modules │ │ │ │ ├── __init__.py │ │ │ │ └── coders.py │ │ └── structures │ │ │ ├── __init__.py │ │ │ └── bbox.py │ └── mmseg │ │ ├── __init__.py │ │ ├── deploy │ │ ├── __init__.py │ │ ├── segmentation.py │ │ └── segmentation_model.py │ │ └── models │ │ ├── __init__.py │ │ ├── decode_heads │ │ ├── __init__.py │ │ ├── decode_head.py │ │ ├── ema_head.py │ │ └── point_head.py │ │ ├── segmentors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cascade_encoder_decoder.py │ │ └── encoder_decoder.py │ │ └── utils │ │ ├── __init__.py │ │ └── up_conv_block.py ├── core │ ├── __init__.py │ ├── optimizers │ │ ├── __init__.py │ │ ├── extractor.py │ │ ├── function_marker.py │ │ └── optimize.py │ └── rewriters │ │ ├── __init__.py │ │ ├── function_rewriter.py │ │ ├── module_rewriter.py │ │ ├── rewriter_manager.py │ │ ├── rewriter_utils.py │ │ └── symbolic_rewriter.py ├── mmcv │ ├── __init__.py │ ├── cnn │ │ ├── __init__.py │ │ └── transformer.py │ └── ops │ │ ├── __init__.py │ │ ├── deform_conv.py │ │ ├── modulated_deform_conv.py │ │ ├── multi_scale_deform_attn.py │ │ ├── nms.py │ │ ├── nms_match.py │ │ ├── nms_rotated.py │ │ ├── point_sample.py │ │ ├── roi_align.py │ │ ├── roi_align_rotated.py │ │ └── transformer.py ├── pytorch │ ├── __init__.py │ ├── functions │ │ ├── __init__.py │ │ ├── adaptive_pool.py │ │ ├── any.py │ │ ├── atan2.py │ │ ├── cat.py │ │ ├── chunk.py │ │ ├── clip.py │ │ ├── copy.py │ │ ├── expand.py │ │ ├── flatten.py │ │ ├── getattribute.py │ │ ├── group_norm.py │ │ ├── interpolate.py │ │ ├── linear.py │ │ ├── linspace.py │ │ ├── masked_fill.py │ │ ├── mod.py │ │ ├── multi_head_attention_forward.py │ │ ├── normalize.py │ │ ├── pad.py │ │ ├── repeat.py │ │ ├── size.py │ │ ├── tensor_getitem.py │ │ ├── tensor_setitem.py │ │ ├── topk.py │ │ └── triu.py │ └── symbolics │ │ ├── __init__.py │ │ ├── adaptive_pool.py │ │ ├── gelu.py │ │ ├── grid_sampler.py │ │ ├── hardsigmoid.py │ │ ├── instance_norm.py │ │ ├── layer_norm.py │ │ ├── linear.py │ │ ├── lstm.py │ │ ├── roll.py │ │ └── squeeze.py ├── utils │ ├── __init__.py │ ├── config_utils.py │ ├── constants.py │ ├── dataset.py │ ├── device.py │ ├── env.py │ ├── logging.py │ ├── test.py │ ├── timer.py │ └── utils.py └── version.py ├── requirements.txt ├── requirements ├── backends.txt ├── build.txt ├── codebases.txt ├── docs.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── introduction.png ├── mmdeploy-logo.png └── qq_group_qrcode.jpg ├── service └── snpe │ ├── client │ ├── inference_pb2.py │ └── inference_pb2_grpc.py │ ├── inference.proto │ └── server │ ├── CMakeLists.txt │ ├── common.cmake │ ├── inference_server.cc │ ├── scope_timer.h │ ├── service_impl.cpp │ ├── service_impl.h │ └── text_table.h ├── setup.cfg ├── setup.py ├── tests ├── data │ ├── annotation.json │ ├── arm_wrestling.mp4 │ ├── n008-2018-08-01-15-16-36-0400__LIDAR_TOP__1533151612397179.pcd.bin │ ├── super-resolution.py │ └── tiger.jpeg ├── regression │ ├── mmaction.yml │ ├── mmagic.yml │ ├── mmdet.yml │ ├── mmdet3d.yml │ ├── mmocr.yml │ ├── mmpose.yml │ ├── mmpretrain.yml │ ├── mmrotate.yml │ └── mmseg.yml ├── test_apis │ ├── test_calibration.py │ ├── test_extract.py │ ├── test_onnx2ascend.py │ ├── test_onnx2ncnn.py │ ├── test_onnx2openvino.py │ ├── test_onnx2rknn.py │ ├── test_onnx2tensorrt.py │ ├── test_onnx2tvm.py │ ├── test_onnx_passes.py │ ├── test_torch2onnx.py │ └── test_torch2torchscript.py ├── test_backend │ └── test_wrapper.py ├── test_codebase │ ├── test_mmaction │ │ ├── conftest.py │ │ ├── data │ │ │ ├── ann.txt │ │ │ ├── model.py │ │ │ └── video │ │ │ │ └── demo.mp4 │ │ ├── test_mmaction_model.py │ │ ├── test_video_recognition.py │ │ └── test_video_recognition_model.py │ ├── test_mmagic │ │ ├── conftest.py │ │ ├── data │ │ │ ├── imgs │ │ │ │ └── blank.jpg │ │ │ ├── model.py │ │ │ └── test_ann.txt │ │ ├── test_mmagic_models.py │ │ ├── test_super_resolution.py │ │ └── test_super_resolution_model.py │ ├── test_mmdet │ │ ├── conftest.py │ │ ├── data │ │ │ ├── coco_sample.json │ │ │ ├── detr_model.json │ │ │ ├── mask_model.json │ │ │ ├── mmrazor_model.py │ │ │ ├── mmrazor_mutable_cfg.yaml │ │ │ ├── model.py │ │ │ └── single_stage_model.json │ │ ├── test_mmdet_models.py │ │ ├── test_mmdet_structures.py │ │ ├── test_mmdet_utils.py │ │ ├── test_object_detection.py │ │ └── test_object_detection_model.py │ ├── test_mmdet3d │ │ ├── conftest.py │ │ ├── data │ │ │ ├── centerpoint_pillar02_second_secfpn_8xb4-cyclic-20e_nus-3d.py │ │ │ ├── centerpoint_pillar02_second_secfpn_head-circlenms_8xb4-cyclic-20e_nus-3d.py │ │ │ ├── centerpoint_pillar02_second_secfpn_nus.py │ │ │ ├── cyclic-20e.py │ │ │ ├── cyclic-40e.py │ │ │ ├── default_runtime.py │ │ │ ├── kitti-3d-3class.py │ │ │ ├── kitti-mono3d.py │ │ │ ├── kitti │ │ │ │ ├── kitti_000008.bin │ │ │ │ ├── kitti_infos_val.pkl │ │ │ │ └── training │ │ │ │ │ └── velodyne_reduced │ │ │ │ │ └── 000008.bin │ │ │ ├── model_cfg.py │ │ │ ├── nus-3d.py │ │ │ ├── nuscenes │ │ │ │ ├── n008-2018-09-18-12-07-26-0400__LIDAR_TOP__1537287083900561.pcd.bin │ │ │ │ ├── n015-2018-07-24-11-22-45+0800.pkl │ │ │ │ └── n015-2018-07-24-11-22-45+0800__CAM_FRONT__1532402927612460.jpg │ │ │ ├── pointpillars.py │ │ │ ├── pointpillars_hv_secfpn_kitti.py │ │ │ ├── smoke.py │ │ │ └── smoke_dla34_dlaneck_gn-all_4xb8-6x_kitti-mono3d.py │ │ ├── test_mmdet3d_models.py │ │ ├── test_mono_detection.py │ │ ├── test_mono_detection_model.py │ │ ├── test_voxel_detection.py │ │ └── test_voxel_detection_model.py │ ├── test_mmocr │ │ ├── conftest.py │ │ ├── data │ │ │ ├── crnn.py │ │ │ ├── dbnet.py │ │ │ ├── lower_english_digits.txt │ │ │ ├── mrcnn.py │ │ │ ├── text_detection.json │ │ │ └── text_recognition.txt │ │ ├── test_mmocr_models.py │ │ ├── test_text_detection.py │ │ ├── test_text_detection_models.py │ │ ├── test_text_recognition.py │ │ └── test_text_recognition_models.py │ ├── test_mmpose │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ │ ├── annotations │ │ │ │ └── person_keypoints_val2017.json │ │ │ └── model.py │ │ ├── test_mmpose_models.py │ │ ├── test_pose_detection.py │ │ ├── test_pose_detection_model.py │ │ └── utils.py │ ├── test_mmpretrain │ │ ├── conftest.py │ │ ├── data │ │ │ ├── imgs │ │ │ │ ├── ann.txt │ │ │ │ └── val │ │ │ │ │ └── blank.jpg │ │ │ ├── mmrazor_model.py │ │ │ ├── mmrazor_mutable_cfg.yaml │ │ │ └── model.py │ │ ├── test_classification.py │ │ ├── test_classification_model.py │ │ └── test_mmpretrain_models.py │ ├── test_mmrotate │ │ ├── conftest.py │ │ ├── data │ │ │ ├── dota_sample │ │ │ │ └── P2805__1024__0___0.txt │ │ │ ├── model.py │ │ │ └── single_stage_model.json │ │ ├── test_mmrotate_models.py │ │ ├── test_rotated_detection.py │ │ └── test_rotated_detection_model.py │ └── test_mmseg │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ ├── mmrazor_model.py │ │ └── model.py │ │ ├── test_mmseg_models.py │ │ ├── test_segmentation.py │ │ ├── test_segmentation_model.py │ │ └── utils.py ├── test_core │ ├── package │ │ ├── __init__.py │ │ └── module.py │ ├── test_function_rewriter.py │ ├── test_mark.py │ ├── test_module_rewriter.py │ ├── test_rewriter_utils.py │ └── test_symbolic_register.py ├── test_csrc │ ├── CMakeLists.txt │ ├── archive │ │ ├── test_json_archive.cpp │ │ └── test_value_archive.cpp │ ├── capi │ │ ├── test_classifier.cpp │ │ ├── test_detector.cpp │ │ ├── test_model.cpp │ │ ├── test_restorer.cpp │ │ ├── test_segmentor.cpp │ │ ├── test_text_detector.cpp │ │ └── test_text_recognizer.cpp │ ├── config │ │ └── test_define.h.in │ ├── core │ │ ├── test_execution.cpp │ │ ├── test_mat.cpp │ │ ├── test_module_adapter.cpp │ │ ├── test_registry.cpp │ │ ├── test_span.cpp │ │ ├── test_status_code.cpp │ │ └── test_value.cpp │ ├── device │ │ ├── test_cpu_device.cpp │ │ ├── test_cuda_device.cpp │ │ └── test_opencl_device.cpp │ ├── graph │ │ └── test_cond.cpp │ ├── model │ │ ├── test_directory_model.cpp │ │ ├── test_model.cpp │ │ └── test_zip_model.cpp │ ├── net │ │ ├── test_ncnn_net.cpp │ │ ├── test_openvino_net.cpp │ │ ├── test_ort_net.cpp │ │ ├── test_ppl_net.cpp │ │ └── test_trt_net.cpp │ ├── preprocess │ │ ├── test_collect.cpp │ │ ├── test_compose.cpp │ │ ├── test_crop.cpp │ │ ├── test_default_format_bundle.cpp │ │ ├── test_image2tensor.cpp │ │ ├── test_load.cpp │ │ ├── test_normalize.cpp │ │ ├── test_pad.cpp │ │ ├── test_permute.cpp │ │ ├── test_resize.cpp │ │ ├── test_utils.cpp │ │ └── test_utils.h │ ├── test_main.cpp │ └── test_resource.h ├── test_mmcv │ ├── test_mmcv_cnn.py │ └── test_mmcv_ops.py ├── test_ops │ ├── __init__.py │ ├── test_nms_match_small.py │ ├── test_ops.py │ └── utils.py ├── test_pytorch │ ├── test_pytorch_functions.py │ └── test_pytorch_ops.py └── test_utils │ ├── test_dataset.py │ ├── test_timer.py │ └── test_util.py ├── third_party ├── catch2 │ └── catch.hpp ├── clipper │ ├── License.txt │ ├── clipper.cpp │ └── clipper.hpp ├── concurrentqueue │ └── concurrentqueue.h ├── dlpack │ └── dlpack.h ├── json │ └── json.hpp └── outcome │ └── outcome-experimental.hpp └── tools ├── check_env.py ├── deploy.py ├── elena └── extract_transform.py ├── extract.py ├── generate_md_table.py ├── onnx2dlc.py ├── onnx2ncnn.py ├── onnx2ncnn_quant_table.py ├── onnx2pplnn.py ├── onnx2tensorrt.py ├── onnx2vacc_quant_dataset.py ├── package_tools ├── README.md ├── generate_build_config.py ├── mmdeploy_builder.py ├── packaging │ ├── MANIFEST.in │ ├── mmdeploy_runtime │ │ ├── __init__.py │ │ ├── _win_dll_path.py │ │ └── version.py │ └── setup.py ├── scripts │ ├── linux │ │ ├── README.md │ │ ├── build_sdk.sh │ │ ├── install_opencv.sh │ │ └── set_env.sh │ └── windows │ │ ├── README.md │ │ ├── build_sdk.ps1 │ │ ├── install_opencv.ps1 │ │ └── set_env.ps1 └── test │ ├── test_sdk.ps1 │ ├── test_sdk.sh │ ├── test_sdk_python.ps1 │ └── test_sdk_python.sh ├── profiler.py ├── quant_image_dataset.py ├── regression_test.py ├── scripts ├── build_base_image.sh ├── build_jetson_orin_python38.sh ├── build_linux_nvidia.sh ├── build_prebuild_image.sh ├── build_ubuntu_x64_ncnn.py ├── build_ubuntu_x64_ort.py ├── build_ubuntu_x64_pplnn.py ├── build_ubuntu_x64_torchscript.py ├── build_ubuntu_x64_tvm.py ├── ubuntu_cross_build_aarch64.sh ├── ubuntu_cross_build_rknn.sh └── ubuntu_utils.py ├── sdk_analyze.py ├── test.py └── torch2onnx.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.clang-format -------------------------------------------------------------------------------- /.codespell_ignore.txt: -------------------------------------------------------------------------------- 1 | cann 2 | CANN 3 | nd 4 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/ISSUE_TEMPLATE/3-documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/md-link-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/md-link-config.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/scripts/check_index_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/check_index_rst.py -------------------------------------------------------------------------------- /.github/scripts/doc_link_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/doc_link_checker.py -------------------------------------------------------------------------------- /.github/scripts/gen_reg_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/gen_reg_summary.py -------------------------------------------------------------------------------- /.github/scripts/linux/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/linux/build.sh -------------------------------------------------------------------------------- /.github/scripts/linux/convert_onnxruntime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/linux/convert_onnxruntime.sh -------------------------------------------------------------------------------- /.github/scripts/linux/install_onnxruntime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/linux/install_onnxruntime.sh -------------------------------------------------------------------------------- /.github/scripts/linux/install_python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/linux/install_python.sh -------------------------------------------------------------------------------- /.github/scripts/linux/test_full_pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/linux/test_full_pipeline.sh -------------------------------------------------------------------------------- /.github/scripts/prepare_reg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/prepare_reg_test.py -------------------------------------------------------------------------------- /.github/scripts/test_java_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/test_java_demo.py -------------------------------------------------------------------------------- /.github/scripts/test_onnx2ncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/test_onnx2ncnn.py -------------------------------------------------------------------------------- /.github/scripts/windows/install_opencv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/scripts/windows/install_opencv.ps1 -------------------------------------------------------------------------------- /.github/workflows/backend-ascend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-ascend.yml -------------------------------------------------------------------------------- /.github/workflows/backend-coreml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-coreml.yml -------------------------------------------------------------------------------- /.github/workflows/backend-ncnn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-ncnn.yml -------------------------------------------------------------------------------- /.github/workflows/backend-ort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-ort.yml -------------------------------------------------------------------------------- /.github/workflows/backend-pplnn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-pplnn.yml -------------------------------------------------------------------------------- /.github/workflows/backend-rknn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-rknn.yml -------------------------------------------------------------------------------- /.github/workflows/backend-snpe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-snpe.yml -------------------------------------------------------------------------------- /.github/workflows/backend-torchscript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/backend-torchscript.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/java_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/java_api.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/linux-riscv64-gcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/linux-riscv64-gcc.yml -------------------------------------------------------------------------------- /.github/workflows/prebuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/prebuild.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/regression-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/regression-test.yml -------------------------------------------------------------------------------- /.github/workflows/rust_api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/rust_api.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /cmake/MMDeploy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/MMDeploy.cmake -------------------------------------------------------------------------------- /cmake/MMDeployConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/MMDeployConfig.cmake.in -------------------------------------------------------------------------------- /cmake/cuda.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/cuda.cmake -------------------------------------------------------------------------------- /cmake/filesystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/filesystem.cmake -------------------------------------------------------------------------------- /cmake/loader.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/loader.cpp.in -------------------------------------------------------------------------------- /cmake/modules/FindCUDNN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/modules/FindCUDNN.cmake -------------------------------------------------------------------------------- /cmake/modules/FindONNXRUNTIME.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/modules/FindONNXRUNTIME.cmake -------------------------------------------------------------------------------- /cmake/modules/FindTENSORRT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/modules/FindTENSORRT.cmake -------------------------------------------------------------------------------- /cmake/modules/FindTVM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/modules/FindTVM.cmake -------------------------------------------------------------------------------- /cmake/opencv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/opencv.cmake -------------------------------------------------------------------------------- /cmake/post-install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/post-install.cmake -------------------------------------------------------------------------------- /cmake/stacktrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/stacktrace.cmake -------------------------------------------------------------------------------- /cmake/tensorrt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/tensorrt.cmake -------------------------------------------------------------------------------- /cmake/toolchains/aarch64-linux-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/toolchains/aarch64-linux-gnu.cmake -------------------------------------------------------------------------------- /cmake/toolchains/arm-linux-gnueabihf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/toolchains/arm-linux-gnueabihf.cmake -------------------------------------------------------------------------------- /cmake/toolchains/riscv64-linux-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/toolchains/riscv64-linux-gnu.cmake -------------------------------------------------------------------------------- /cmake/toolchains/rknpu2-linux-gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/cmake/toolchains/rknpu2-linux-gnu.cmake -------------------------------------------------------------------------------- /configs/_base_/backends/ascend.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='ascend') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/coreml.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='coreml', convert_to='mlprogram') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/ncnn-int8.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='ncnn', precision='INT8', use_vulkan=False) 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/ncnn.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='ncnn', precision='FP32', use_vulkan=False) 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/onnxruntime-fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/backends/onnxruntime-fp16.py -------------------------------------------------------------------------------- /configs/_base_/backends/onnxruntime.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='onnxruntime') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/openvino.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='openvino') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/pplnn.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='pplnn') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/rknn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/backends/rknn.py -------------------------------------------------------------------------------- /configs/_base_/backends/sdk.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='sdk') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/snpe.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='snpe') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/tensorrt-fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/backends/tensorrt-fp16.py -------------------------------------------------------------------------------- /configs/_base_/backends/tensorrt-int8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/backends/tensorrt-int8.py -------------------------------------------------------------------------------- /configs/_base_/backends/tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/backends/tensorrt.py -------------------------------------------------------------------------------- /configs/_base_/backends/torchscript.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='torchscript') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/tvm.py: -------------------------------------------------------------------------------- 1 | backend_config = dict(type='tvm') 2 | -------------------------------------------------------------------------------- /configs/_base_/backends/vacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/backends/vacc.py -------------------------------------------------------------------------------- /configs/_base_/onnx_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/onnx_config.py -------------------------------------------------------------------------------- /configs/_base_/torchscript_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/_base_/torchscript_config.py -------------------------------------------------------------------------------- /configs/mmdet/_base_/base_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmdet/_base_/base_dynamic.py -------------------------------------------------------------------------------- /configs/mmdet/_base_/base_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmdet/_base_/base_static.py -------------------------------------------------------------------------------- /configs/mmdet/_base_/base_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmdet/_base_/base_torchscript.py -------------------------------------------------------------------------------- /configs/mmpose/pose-detection_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmpose/pose-detection_static.py -------------------------------------------------------------------------------- /configs/mmpose/pose-detection_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmpose/pose-detection_torchscript.py -------------------------------------------------------------------------------- /configs/mmpretrain/classification_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmpretrain/classification_dynamic.py -------------------------------------------------------------------------------- /configs/mmpretrain/classification_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmpretrain/classification_static.py -------------------------------------------------------------------------------- /configs/mmrotate/rotated-detection_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmrotate/rotated-detection_static.py -------------------------------------------------------------------------------- /configs/mmseg/segmentation_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmseg/segmentation_dynamic.py -------------------------------------------------------------------------------- /configs/mmseg/segmentation_sdk_dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmseg/segmentation_sdk_dynamic.py -------------------------------------------------------------------------------- /configs/mmseg/segmentation_static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmseg/segmentation_static.py -------------------------------------------------------------------------------- /configs/mmseg/segmentation_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/configs/mmseg/segmentation_torchscript.py -------------------------------------------------------------------------------- /csrc/mmdeploy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/classifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/classifier.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/classifier.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/common.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/common.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/detector.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/detector.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/executor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/executor.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/handle.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/model.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/model.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/pipeline.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/pipeline.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/pose_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/pose_tracker.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/restorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/restorer.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/restorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/restorer.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/segmentor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/segmentor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/c/mmdeploy/segmentor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/c/mmdeploy/segmentor.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/csharp/MMDeploy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/csharp/MMDeploy.sln -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/csharp/README.md -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/cxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/cxx/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/cxx/mmdeploy/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/cxx/mmdeploy/common.hpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/cxx/mmdeploy/detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/cxx/mmdeploy/detector.hpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/java/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/java/README.md -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/java/mmdeploy/Mat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/java/mmdeploy/Mat.java -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/java/native/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/java/native/common.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/classifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/classifier.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/common.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/common.h -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/detector.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/executor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/executor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/internal.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/pipeline.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/restorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/restorer.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/apis/python/segmentor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/apis/python/segmentor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/archive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/archive/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/archive/json_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/archive/json_archive.h -------------------------------------------------------------------------------- /csrc/mmdeploy/archive/value_archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/archive/value_archive.h -------------------------------------------------------------------------------- /csrc/mmdeploy/backend_ops/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/backend_ops/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/common.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmcls/mmcls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmcls/mmcls.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmcls/mmcls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmcls/mmcls.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmdet/mmdet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmdet/mmdet.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmdet/mmdet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmdet/mmdet.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmdet/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmdet/utils.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmdet/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmdet/utils.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmdet/yolo_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmdet/yolo_head.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmedit/mmedit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmedit/mmedit.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmedit/mmedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmedit/mmedit.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/crnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/crnn.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/cuda/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/cuda/utils.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/dbnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/dbnet.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/dbnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/dbnet.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/mmocr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/mmocr.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/mmocr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/mmocr.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/panet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/panet.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/panet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/panet.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/psenet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/psenet.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/psenet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/psenet.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmocr/warp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmocr/warp.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmpose/mmpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmpose/mmpose.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmpose/mmpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmpose/mmpose.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmseg/mmseg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmseg/mmseg.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmseg/mmseg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmseg/mmseg.h -------------------------------------------------------------------------------- /csrc/mmdeploy/codebase/mmseg/segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/codebase/mmseg/segment.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/core/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/archive.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/device.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/device_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/device_impl.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/device_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/device_impl.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/graph.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/graph.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/logger.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/logger.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/macro.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mat.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mat.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/model.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/model.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/model_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/model_impl.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/module.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/module.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/detected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/detected.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/iterator.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/priority_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/priority_tag.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/span.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/static_any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/static_any.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/structure.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/mpl/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/mpl/type_traits.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/operator.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/operator.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/profiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/profiler.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/profiler.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/registry.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/registry.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/serialization.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/status_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/status_code.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/status_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/status_code.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/tensor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/tensor.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/types.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/device_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/device_utils.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/device_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/device_utils.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/filesystem.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/formatter.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/formatter.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/stacktrace.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/core/utils/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/utils/stacktrace.h -------------------------------------------------------------------------------- /csrc/mmdeploy/core/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/core/value.h -------------------------------------------------------------------------------- /csrc/mmdeploy/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/device/acl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/acl/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/device/acl/acl_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/acl/acl_device.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/device/cpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/cpu/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/device/cpu/cpu_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/cpu/cpu_device.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/device/cpu/cpu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/cpu/cpu_device.h -------------------------------------------------------------------------------- /csrc/mmdeploy/device/cuda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/cuda/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/device/cuda/cuda_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/cuda/cuda_device.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/device/cuda/cuda_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/cuda/cuda_device.h -------------------------------------------------------------------------------- /csrc/mmdeploy/device/device_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/device/device_allocator.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/bulk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/bulk.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/closure.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/concepts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/concepts.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/dynamic_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/dynamic_batch.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/ensure_started.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/ensure_started.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/execute.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/execution.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/expand.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/just.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/just.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/let_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/let_value.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/on.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/run_loop.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/schedule_from.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/schedule_from.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/split.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/start_detached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/start_detached.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/submit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/submit.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/sync_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/sync_wait.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/tag_invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/tag_invoke.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/then.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/then.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/transfer.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/transfer_just.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/transfer_just.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/type_erased.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/type_erased.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/type_traits.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/utility.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/when_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/when_all.h -------------------------------------------------------------------------------- /csrc/mmdeploy/execution/when_all_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/execution/when_all_value.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/common.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/cond.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/cond.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/cond.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/flattened.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/flattened.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/inference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/inference.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/inference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/inference.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/pipeline.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/pipeline.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/static_router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/static_router.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/static_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/static_router.h -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/task.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/graph/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/graph/task.h -------------------------------------------------------------------------------- /csrc/mmdeploy/model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/model/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/model/zip_model_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/model/zip_model_impl.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/acl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/acl/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/acl/acl_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/acl/acl_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/acl/acl_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/acl/acl_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/coreml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/coreml/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/coreml/coreml_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/coreml/coreml_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/coreml/coreml_net.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/coreml/coreml_net.mm -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ncnn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ncnn/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ncnn/ncnn_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ncnn/ncnn_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ncnn/ncnn_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ncnn/ncnn_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/net_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/net_module.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/net_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/net_module.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/openvino/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/openvino/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/openvino/openvino_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/openvino/openvino_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ort/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ort/ort_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ort/ort_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ort/ort_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ort/ort_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ppl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ppl/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ppl/ppl_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ppl/ppl_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/ppl/ppl_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/ppl/ppl_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/rknn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/rknn/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/rknn/rknn_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/rknn/rknn_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/rknn/rknn_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/rknn/rknn_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/snpe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/snpe/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/snpe/snpe_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/snpe/snpe_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/snpe/snpe_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/snpe/snpe_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/torchscript/torch_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/torchscript/torch_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/trt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/trt/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/trt/trt_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/trt/trt_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/trt/trt_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/trt/trt_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/net/tvm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/tvm/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/net/tvm/tvm_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/tvm/tvm_net.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/net/tvm/tvm_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/net/tvm/tvm_net.h -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/crop.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/cvtcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/cvtcolor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/flip.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/hwc2chw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/hwc2chw.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/normalize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/normalize.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/pad.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/permute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/permute.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/resize.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cpu/to_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cpu/to_float.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/cast.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/cast.cu -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/crop.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/crop.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/crop.cu -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/cvtcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/cvtcolor.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/flip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/flip.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/hwc2chw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/hwc2chw.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/normalize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/normalize.cu -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/pad.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/permute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/permute.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/permute.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/permute.cu -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/permute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/permute.h -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/resize.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/to_float.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/to_float.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/cuda/transpose.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/cuda/transpose.cu -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/managed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/managed.h -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/operation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/operation.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/operation.h -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/vision.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/operation/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/operation/vision.h -------------------------------------------------------------------------------- /csrc/mmdeploy/preprocess/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/preprocess/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/preprocess/elena/cpu_kernel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csrc/mmdeploy/preprocess/elena/cuda_kernel/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /csrc/mmdeploy/preprocess/elena/fused.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/preprocess/elena/fused.cpp -------------------------------------------------------------------------------- /csrc/mmdeploy/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/utils/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/utils/dlpack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/utils/dlpack/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/utils/dlpack/dlpack_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/utils/dlpack/dlpack_utils.h -------------------------------------------------------------------------------- /csrc/mmdeploy/utils/opencv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/utils/opencv/CMakeLists.txt -------------------------------------------------------------------------------- /csrc/mmdeploy/utils/opencv/opencv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/csrc/mmdeploy/utils/opencv/opencv_utils.h -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/csharp/Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/Demo.sln -------------------------------------------------------------------------------- /demo/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/README.md -------------------------------------------------------------------------------- /demo/csharp/image_restorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/image_restorer/Program.cs -------------------------------------------------------------------------------- /demo/csharp/image_segmentation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/image_segmentation/Program.cs -------------------------------------------------------------------------------- /demo/csharp/object_detection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/object_detection/Program.cs -------------------------------------------------------------------------------- /demo/csharp/ocr_detection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/ocr_detection/Program.cs -------------------------------------------------------------------------------- /demo/csharp/ocr_recognition/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/ocr_recognition/Program.cs -------------------------------------------------------------------------------- /demo/csharp/pose_detection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/pose_detection/Program.cs -------------------------------------------------------------------------------- /demo/csharp/pose_tracker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/pose_tracker/Program.cs -------------------------------------------------------------------------------- /demo/csharp/rotated_detection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csharp/rotated_detection/Program.cs -------------------------------------------------------------------------------- /demo/csrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/CMakeLists.txt -------------------------------------------------------------------------------- /demo/csrc/c/batch_object_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/batch_object_detection.cpp -------------------------------------------------------------------------------- /demo/csrc/c/det_cls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/det_cls.cpp -------------------------------------------------------------------------------- /demo/csrc/c/det_pose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/det_pose.cpp -------------------------------------------------------------------------------- /demo/csrc/c/image_classification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/image_classification.cpp -------------------------------------------------------------------------------- /demo/csrc/c/image_restorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/image_restorer.cpp -------------------------------------------------------------------------------- /demo/csrc/c/image_segmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/image_segmentation.cpp -------------------------------------------------------------------------------- /demo/csrc/c/object_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/object_detection.cpp -------------------------------------------------------------------------------- /demo/csrc/c/ocr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/ocr.cpp -------------------------------------------------------------------------------- /demo/csrc/c/pose_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/pose_detection.cpp -------------------------------------------------------------------------------- /demo/csrc/c/rotated_object_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/rotated_object_detection.cpp -------------------------------------------------------------------------------- /demo/csrc/c/video_recognition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/c/video_recognition.cpp -------------------------------------------------------------------------------- /demo/csrc/cpp/classifier.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/classifier.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/det_pose.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/det_pose.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/detector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/detector.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/pose_detector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/pose_detector.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/pose_tracker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/pose_tracker.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/pose_tracker_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/pose_tracker_params.h -------------------------------------------------------------------------------- /demo/csrc/cpp/restorer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/restorer.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/rotated_detector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/rotated_detector.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/segmentor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/segmentor.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/text_det_recog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/text_det_recog.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/text_ocr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/text_ocr.cxx -------------------------------------------------------------------------------- /demo/csrc/cpp/utils/argparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/utils/argparse.h -------------------------------------------------------------------------------- /demo/csrc/cpp/utils/mediaio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/utils/mediaio.h -------------------------------------------------------------------------------- /demo/csrc/cpp/utils/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/utils/palette.h -------------------------------------------------------------------------------- /demo/csrc/cpp/utils/skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/utils/skeleton.h -------------------------------------------------------------------------------- /demo/csrc/cpp/utils/visualize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/utils/visualize.h -------------------------------------------------------------------------------- /demo/csrc/cpp/video_cls.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/csrc/cpp/video_cls.cxx -------------------------------------------------------------------------------- /demo/demo_rewrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/demo_rewrite.py -------------------------------------------------------------------------------- /demo/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/README.md -------------------------------------------------------------------------------- /demo/java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/build.xml -------------------------------------------------------------------------------- /demo/java/src/ImageClassification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/ImageClassification.java -------------------------------------------------------------------------------- /demo/java/src/ImageRestorer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/ImageRestorer.java -------------------------------------------------------------------------------- /demo/java/src/ImageSegmentation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/ImageSegmentation.java -------------------------------------------------------------------------------- /demo/java/src/ObjectDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/ObjectDetection.java -------------------------------------------------------------------------------- /demo/java/src/Ocr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/Ocr.java -------------------------------------------------------------------------------- /demo/java/src/PoseDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/PoseDetection.java -------------------------------------------------------------------------------- /demo/java/src/PoseTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/PoseTracker.java -------------------------------------------------------------------------------- /demo/java/src/RotatedDetection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/RotatedDetection.java -------------------------------------------------------------------------------- /demo/java/src/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/java/src/Utils.java -------------------------------------------------------------------------------- /demo/python/det_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/det_pose.py -------------------------------------------------------------------------------- /demo/python/image_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/image_classification.py -------------------------------------------------------------------------------- /demo/python/image_restorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/image_restorer.py -------------------------------------------------------------------------------- /demo/python/image_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/image_segmentation.py -------------------------------------------------------------------------------- /demo/python/object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/object_detection.py -------------------------------------------------------------------------------- /demo/python/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/ocr.py -------------------------------------------------------------------------------- /demo/python/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/pipeline.py -------------------------------------------------------------------------------- /demo/python/pose_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/pose_detection.py -------------------------------------------------------------------------------- /demo/python/pose_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/pose_tracker.py -------------------------------------------------------------------------------- /demo/python/rotated_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/rotated_object_detection.py -------------------------------------------------------------------------------- /demo/python/video_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/python/video_recognition.py -------------------------------------------------------------------------------- /demo/resources/cityscapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/cityscapes.png -------------------------------------------------------------------------------- /demo/resources/det.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/det.jpg -------------------------------------------------------------------------------- /demo/resources/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/face.png -------------------------------------------------------------------------------- /demo/resources/human-pose.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/human-pose.jpg -------------------------------------------------------------------------------- /demo/resources/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/original.png -------------------------------------------------------------------------------- /demo/resources/rewritten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/rewritten.png -------------------------------------------------------------------------------- /demo/resources/text_det.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/text_det.jpg -------------------------------------------------------------------------------- /demo/resources/text_recog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/resources/text_recog.jpg -------------------------------------------------------------------------------- /demo/tutorials/tutorials_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/demo/tutorials/tutorials_1.ipynb -------------------------------------------------------------------------------- /docker/Base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docker/Base/Dockerfile -------------------------------------------------------------------------------- /docker/CPU/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docker/CPU/Dockerfile -------------------------------------------------------------------------------- /docker/GPU/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docker/GPU/Dockerfile -------------------------------------------------------------------------------- /docker/Release/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docker/Release/Dockerfile -------------------------------------------------------------------------------- /docker/prebuild/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docker/prebuild/Dockerfile -------------------------------------------------------------------------------- /docker/prebuild/Dockerfile.cxx11abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docker/prebuild/Dockerfile.cxx11abi -------------------------------------------------------------------------------- /docs/cppapi/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/cppapi/Doxyfile -------------------------------------------------------------------------------- /docs/en/01-how-to-build/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/android.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/cmake_option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/cmake_option.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/jetsons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/jetsons.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/linux-x86_64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/linux-x86_64.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/macos-arm64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/macos-arm64.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/riscv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/riscv.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/rockchip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/rockchip.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/snpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/snpe.md -------------------------------------------------------------------------------- /docs/en/01-how-to-build/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/01-how-to-build/windows.md -------------------------------------------------------------------------------- /docs/en/02-how-to-run/convert_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/02-how-to-run/convert_model.md -------------------------------------------------------------------------------- /docs/en/02-how-to-run/fuse_transform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/02-how-to-run/fuse_transform.md -------------------------------------------------------------------------------- /docs/en/02-how-to-run/profile_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/02-how-to-run/profile_model.md -------------------------------------------------------------------------------- /docs/en/02-how-to-run/quantize_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/02-how-to-run/quantize_model.md -------------------------------------------------------------------------------- /docs/en/02-how-to-run/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/02-how-to-run/useful_tools.md -------------------------------------------------------------------------------- /docs/en/02-how-to-run/write_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/02-how-to-run/write_config.md -------------------------------------------------------------------------------- /docs/en/03-benchmark/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/03-benchmark/benchmark.md -------------------------------------------------------------------------------- /docs/en/03-benchmark/benchmark_edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/03-benchmark/benchmark_edge.md -------------------------------------------------------------------------------- /docs/en/03-benchmark/benchmark_tvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/03-benchmark/benchmark_tvm.md -------------------------------------------------------------------------------- /docs/en/03-benchmark/quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/03-benchmark/quantization.md -------------------------------------------------------------------------------- /docs/en/03-benchmark/supported_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/03-benchmark/supported_models.md -------------------------------------------------------------------------------- /docs/en/04-supported-codebases/mmagic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/04-supported-codebases/mmagic.md -------------------------------------------------------------------------------- /docs/en/04-supported-codebases/mmdet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/04-supported-codebases/mmdet.md -------------------------------------------------------------------------------- /docs/en/04-supported-codebases/mmdet3d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/04-supported-codebases/mmdet3d.md -------------------------------------------------------------------------------- /docs/en/04-supported-codebases/mmocr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/04-supported-codebases/mmocr.md -------------------------------------------------------------------------------- /docs/en/04-supported-codebases/mmpose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/04-supported-codebases/mmpose.md -------------------------------------------------------------------------------- /docs/en/04-supported-codebases/mmseg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/04-supported-codebases/mmseg.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/coreml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/coreml.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/ncnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/ncnn.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/openvino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/openvino.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/pplnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/pplnn.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/rknn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/rknn.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/snpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/snpe.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/tensorrt.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/tvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/tvm.md -------------------------------------------------------------------------------- /docs/en/05-supported-backends/vacc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/05-supported-backends/vacc.md -------------------------------------------------------------------------------- /docs/en/06-custom-ops/ncnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/06-custom-ops/ncnn.md -------------------------------------------------------------------------------- /docs/en/06-custom-ops/onnxruntime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/06-custom-ops/onnxruntime.md -------------------------------------------------------------------------------- /docs/en/06-custom-ops/tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/06-custom-ops/tensorrt.md -------------------------------------------------------------------------------- /docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/Makefile -------------------------------------------------------------------------------- /docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/en/_static/image/mmdeploy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/_static/image/mmdeploy-logo.png -------------------------------------------------------------------------------- /docs/en/_static/image/quant_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/_static/image/quant_model.png -------------------------------------------------------------------------------- /docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/api.rst -------------------------------------------------------------------------------- /docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/conf.py -------------------------------------------------------------------------------- /docs/en/experimental/onnx_optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/experimental/onnx_optimizer.md -------------------------------------------------------------------------------- /docs/en/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/faq.md -------------------------------------------------------------------------------- /docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/get_started.md -------------------------------------------------------------------------------- /docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/index.rst -------------------------------------------------------------------------------- /docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/make.bat -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/classifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/classifier.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/common.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/detector.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/executor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/executor.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/model.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/pipeline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/pipeline.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/pose_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/pose_detector.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/pose_tracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/pose_tracker.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/rotated_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/rotated_detector.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/segmentor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/segmentor.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/text_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/text_detector.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/text_recognizer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/text_recognizer.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c/video_recognizer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c/video_recognizer.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/c_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/c_api.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/index.rst -------------------------------------------------------------------------------- /docs/en/sdk_usage/profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/profiler.md -------------------------------------------------------------------------------- /docs/en/sdk_usage/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/sdk_usage/quick_start.md -------------------------------------------------------------------------------- /docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/en/switch_language.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/android.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/jetsons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/jetsons.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/macos-arm64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/macos-arm64.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/riscv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/riscv.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/rockchip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/rockchip.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/snpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/snpe.md -------------------------------------------------------------------------------- /docs/zh_cn/01-how-to-build/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/01-how-to-build/windows.md -------------------------------------------------------------------------------- /docs/zh_cn/02-how-to-run/convert_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/02-how-to-run/convert_model.md -------------------------------------------------------------------------------- /docs/zh_cn/02-how-to-run/profile_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/02-how-to-run/profile_model.md -------------------------------------------------------------------------------- /docs/zh_cn/02-how-to-run/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/02-how-to-run/useful_tools.md -------------------------------------------------------------------------------- /docs/zh_cn/02-how-to-run/write_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/02-how-to-run/write_config.md -------------------------------------------------------------------------------- /docs/zh_cn/03-benchmark/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/03-benchmark/benchmark.md -------------------------------------------------------------------------------- /docs/zh_cn/03-benchmark/benchmark_edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/03-benchmark/benchmark_edge.md -------------------------------------------------------------------------------- /docs/zh_cn/03-benchmark/benchmark_tvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/03-benchmark/benchmark_tvm.md -------------------------------------------------------------------------------- /docs/zh_cn/03-benchmark/quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/03-benchmark/quantization.md -------------------------------------------------------------------------------- /docs/zh_cn/05-supported-backends/ncnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/05-supported-backends/ncnn.md -------------------------------------------------------------------------------- /docs/zh_cn/05-supported-backends/pplnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/05-supported-backends/pplnn.md -------------------------------------------------------------------------------- /docs/zh_cn/05-supported-backends/rknn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/05-supported-backends/rknn.md -------------------------------------------------------------------------------- /docs/zh_cn/05-supported-backends/snpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/05-supported-backends/snpe.md -------------------------------------------------------------------------------- /docs/zh_cn/05-supported-backends/tvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/05-supported-backends/tvm.md -------------------------------------------------------------------------------- /docs/zh_cn/05-supported-backends/vacc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/05-supported-backends/vacc.md -------------------------------------------------------------------------------- /docs/zh_cn/06-custom-ops/ncnn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/06-custom-ops/ncnn.md -------------------------------------------------------------------------------- /docs/zh_cn/06-custom-ops/onnxruntime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/06-custom-ops/onnxruntime.md -------------------------------------------------------------------------------- /docs/zh_cn/06-custom-ops/tensorrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/06-custom-ops/tensorrt.md -------------------------------------------------------------------------------- /docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /docs/zh_cn/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/_static/css/readthedocs.css -------------------------------------------------------------------------------- /docs/zh_cn/_static/image/quant_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/_static/image/quant_model.png -------------------------------------------------------------------------------- /docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /docs/zh_cn/experimental/onnx_optimizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/experimental/onnx_optimizer.md -------------------------------------------------------------------------------- /docs/zh_cn/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/faq.md -------------------------------------------------------------------------------- /docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/classifier.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/classifier.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/common.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/detector.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/executor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/executor.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/model.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/pipeline.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/pipeline.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/pose_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/pose_detector.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/pose_tracker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/pose_tracker.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/segmentor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/segmentor.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c/text_detector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c/text_detector.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/c_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/c_api.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/index.rst -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/profiler.md -------------------------------------------------------------------------------- /docs/zh_cn/sdk_usage/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/sdk_usage/quick_start.md -------------------------------------------------------------------------------- /docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorial/02_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/tutorial/02_challenges.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorial/03_pytorch2onnx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/tutorial/03_pytorch2onnx.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorial/04_onnx_custom_op.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/tutorial/04_onnx_custom_op.md -------------------------------------------------------------------------------- /docs/zh_cn/tutorial/07_write_a_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/docs/zh_cn/tutorial/07_write_a_plugin.md -------------------------------------------------------------------------------- /mmdeploy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/ascend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/ascend/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/calibration.py -------------------------------------------------------------------------------- /mmdeploy/apis/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/core/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/core/pipeline_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/core/pipeline_manager.py -------------------------------------------------------------------------------- /mmdeploy/apis/coreml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/coreml/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/extract_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/extract_model.py -------------------------------------------------------------------------------- /mmdeploy/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/inference.py -------------------------------------------------------------------------------- /mmdeploy/apis/ncnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/ncnn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/onnx/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/onnx/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/onnx/export.py -------------------------------------------------------------------------------- /mmdeploy/apis/onnx/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/onnx/optimizer.py -------------------------------------------------------------------------------- /mmdeploy/apis/onnx/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/onnx/partition.py -------------------------------------------------------------------------------- /mmdeploy/apis/onnx/passes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/onnx/passes/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/onnxruntime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/onnxruntime/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/openvino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/openvino/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/openvino/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/openvino/utils.py -------------------------------------------------------------------------------- /mmdeploy/apis/pplnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/pplnn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdeploy/apis/pytorch2torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/pytorch2torchscript.py -------------------------------------------------------------------------------- /mmdeploy/apis/rknn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/rknn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/sdk/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/snpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/snpe/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/tensorrt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/tensorrt/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/torch_jit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/torch_jit/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/torch_jit/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/torch_jit/trace.py -------------------------------------------------------------------------------- /mmdeploy/apis/tvm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/tvm/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/utils/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/utils/calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/utils/calibration.py -------------------------------------------------------------------------------- /mmdeploy/apis/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/utils/utils.py -------------------------------------------------------------------------------- /mmdeploy/apis/vacc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/vacc/__init__.py -------------------------------------------------------------------------------- /mmdeploy/apis/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/apis/visualize.py -------------------------------------------------------------------------------- /mmdeploy/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/ascend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ascend/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/ascend/onnx2ascend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ascend/onnx2ascend.py -------------------------------------------------------------------------------- /mmdeploy/backend/ascend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ascend/utils.py -------------------------------------------------------------------------------- /mmdeploy/backend/ascend/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ascend/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/base/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/base/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/base/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/base/base_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/base/base_wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/coreml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/coreml/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/coreml/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/coreml/ops.py -------------------------------------------------------------------------------- /mmdeploy/backend/coreml/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/coreml/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/ncnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ncnn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/ncnn/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ncnn/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/ncnn/init_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ncnn/init_plugins.py -------------------------------------------------------------------------------- /mmdeploy/backend/ncnn/onnx2ncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ncnn/onnx2ncnn.py -------------------------------------------------------------------------------- /mmdeploy/backend/ncnn/quant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ncnn/quant.py -------------------------------------------------------------------------------- /mmdeploy/backend/ncnn/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/ncnn/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/onnxruntime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/onnxruntime/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/onnxruntime/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/onnxruntime/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/openvino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/openvino/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/openvino/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/openvino/utils.py -------------------------------------------------------------------------------- /mmdeploy/backend/openvino/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/openvino/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/pplnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/pplnn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/pplnn/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/pplnn/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/pplnn/onnx2pplnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/pplnn/onnx2pplnn.py -------------------------------------------------------------------------------- /mmdeploy/backend/pplnn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/pplnn/utils.py -------------------------------------------------------------------------------- /mmdeploy/backend/pplnn/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/pplnn/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/rknn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/rknn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/rknn/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/rknn/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/rknn/onnx2rknn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/rknn/onnx2rknn.py -------------------------------------------------------------------------------- /mmdeploy/backend/rknn/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/rknn/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/sdk/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/sdk/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/sdk/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/sdk/export_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/sdk/export_info.py -------------------------------------------------------------------------------- /mmdeploy/backend/sdk/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/sdk/tracer.py -------------------------------------------------------------------------------- /mmdeploy/backend/sdk/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/sdk/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/snpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/snpe/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/snpe/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/snpe/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/snpe/init_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/snpe/init_plugins.py -------------------------------------------------------------------------------- /mmdeploy/backend/snpe/onnx2dlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/snpe/onnx2dlc.py -------------------------------------------------------------------------------- /mmdeploy/backend/snpe/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/snpe/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/tensorrt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tensorrt/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/tensorrt/calib_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tensorrt/calib_utils.py -------------------------------------------------------------------------------- /mmdeploy/backend/tensorrt/init_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tensorrt/init_plugins.py -------------------------------------------------------------------------------- /mmdeploy/backend/tensorrt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tensorrt/utils.py -------------------------------------------------------------------------------- /mmdeploy/backend/tensorrt/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tensorrt/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/torchscript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/torchscript/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/torchscript/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/torchscript/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/tvm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tvm/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/tvm/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tvm/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/tvm/onnx2tvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tvm/onnx2tvm.py -------------------------------------------------------------------------------- /mmdeploy/backend/tvm/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tvm/quantize.py -------------------------------------------------------------------------------- /mmdeploy/backend/tvm/tuner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tvm/tuner.py -------------------------------------------------------------------------------- /mmdeploy/backend/tvm/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/tvm/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/backend/vacc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/vacc/__init__.py -------------------------------------------------------------------------------- /mmdeploy/backend/vacc/backend_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/vacc/backend_manager.py -------------------------------------------------------------------------------- /mmdeploy/backend/vacc/onnx2vacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/vacc/onnx2vacc.py -------------------------------------------------------------------------------- /mmdeploy/backend/vacc/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/backend/vacc/wrapper.py -------------------------------------------------------------------------------- /mmdeploy/codebase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/base/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/base/backend_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/base/backend_model.py -------------------------------------------------------------------------------- /mmdeploy/codebase/base/mmcodebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/base/mmcodebase.py -------------------------------------------------------------------------------- /mmdeploy/codebase/base/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/base/runner.py -------------------------------------------------------------------------------- /mmdeploy/codebase/base/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/base/task.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmaction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmaction/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmagic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmagic/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmagic/deploy/mmagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmagic/deploy/mmagic.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet/deploy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet/deploy/utils.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet/models/necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet/models/necks.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet/ops/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet/ops/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet/ops/prior_box.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet3d/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmdet3d/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmdet3d/models/base.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmocr/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmocr/deploy/mmocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmocr/deploy/mmocr.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmocr/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmocr/models/utils.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmpose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmpose/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmpretrain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmpretrain/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmrotate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmrotate/__init__.py -------------------------------------------------------------------------------- /mmdeploy/codebase/mmseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/codebase/mmseg/__init__.py -------------------------------------------------------------------------------- /mmdeploy/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/core/__init__.py -------------------------------------------------------------------------------- /mmdeploy/core/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/core/optimizers/__init__.py -------------------------------------------------------------------------------- /mmdeploy/core/optimizers/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/core/optimizers/extractor.py -------------------------------------------------------------------------------- /mmdeploy/core/optimizers/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/core/optimizers/optimize.py -------------------------------------------------------------------------------- /mmdeploy/core/rewriters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/core/rewriters/__init__.py -------------------------------------------------------------------------------- /mmdeploy/core/rewriters/rewriter_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/core/rewriters/rewriter_utils.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/__init__.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/cnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/cnn/__init__.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/cnn/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/cnn/transformer.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/__init__.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/deform_conv.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/nms.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/nms_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/nms_match.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/nms_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/nms_rotated.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/point_sample.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/roi_align.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/roi_align_rotated.py -------------------------------------------------------------------------------- /mmdeploy/mmcv/ops/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/mmcv/ops/transformer.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/__init__.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/__init__.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/any.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/atan2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/atan2.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/cat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/cat.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/chunk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/chunk.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/clip.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/copy.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/expand.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/flatten.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/group_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/group_norm.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/interpolate.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/linear.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/linspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/linspace.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/masked_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/masked_fill.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/mod.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/normalize.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/pad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/pad.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/repeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/repeat.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/size.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/topk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/topk.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/functions/triu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/functions/triu.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/__init__.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/gelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/gelu.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/hardsigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/hardsigmoid.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/layer_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/layer_norm.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/linear.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/lstm.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/roll.py -------------------------------------------------------------------------------- /mmdeploy/pytorch/symbolics/squeeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/pytorch/symbolics/squeeze.py -------------------------------------------------------------------------------- /mmdeploy/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/__init__.py -------------------------------------------------------------------------------- /mmdeploy/utils/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/config_utils.py -------------------------------------------------------------------------------- /mmdeploy/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/constants.py -------------------------------------------------------------------------------- /mmdeploy/utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/dataset.py -------------------------------------------------------------------------------- /mmdeploy/utils/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/device.py -------------------------------------------------------------------------------- /mmdeploy/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/env.py -------------------------------------------------------------------------------- /mmdeploy/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/logging.py -------------------------------------------------------------------------------- /mmdeploy/utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/test.py -------------------------------------------------------------------------------- /mmdeploy/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/timer.py -------------------------------------------------------------------------------- /mmdeploy/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/utils/utils.py -------------------------------------------------------------------------------- /mmdeploy/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/mmdeploy/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/backends.txt: -------------------------------------------------------------------------------- 1 | onnxruntime>=1.8.0 2 | openvino-dev==2022.3.0 3 | -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- 1 | cython 2 | numpy 3 | packaging 4 | setuptools 5 | -------------------------------------------------------------------------------- /requirements/codebases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/requirements/codebases.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- 1 | h5py 2 | tqdm 3 | -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /resources/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/resources/introduction.png -------------------------------------------------------------------------------- /resources/mmdeploy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/resources/mmdeploy-logo.png -------------------------------------------------------------------------------- /resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /service/snpe/client/inference_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/client/inference_pb2.py -------------------------------------------------------------------------------- /service/snpe/client/inference_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/client/inference_pb2_grpc.py -------------------------------------------------------------------------------- /service/snpe/inference.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/inference.proto -------------------------------------------------------------------------------- /service/snpe/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/CMakeLists.txt -------------------------------------------------------------------------------- /service/snpe/server/common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/common.cmake -------------------------------------------------------------------------------- /service/snpe/server/inference_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/inference_server.cc -------------------------------------------------------------------------------- /service/snpe/server/scope_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/scope_timer.h -------------------------------------------------------------------------------- /service/snpe/server/service_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/service_impl.cpp -------------------------------------------------------------------------------- /service/snpe/server/service_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/service_impl.h -------------------------------------------------------------------------------- /service/snpe/server/text_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/service/snpe/server/text_table.h -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/data/annotation.json -------------------------------------------------------------------------------- /tests/data/arm_wrestling.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/data/arm_wrestling.mp4 -------------------------------------------------------------------------------- /tests/data/super-resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/data/super-resolution.py -------------------------------------------------------------------------------- /tests/data/tiger.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/data/tiger.jpeg -------------------------------------------------------------------------------- /tests/regression/mmaction.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmaction.yml -------------------------------------------------------------------------------- /tests/regression/mmagic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmagic.yml -------------------------------------------------------------------------------- /tests/regression/mmdet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmdet.yml -------------------------------------------------------------------------------- /tests/regression/mmdet3d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmdet3d.yml -------------------------------------------------------------------------------- /tests/regression/mmocr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmocr.yml -------------------------------------------------------------------------------- /tests/regression/mmpose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmpose.yml -------------------------------------------------------------------------------- /tests/regression/mmpretrain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmpretrain.yml -------------------------------------------------------------------------------- /tests/regression/mmrotate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmrotate.yml -------------------------------------------------------------------------------- /tests/regression/mmseg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/regression/mmseg.yml -------------------------------------------------------------------------------- /tests/test_apis/test_calibration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_calibration.py -------------------------------------------------------------------------------- /tests/test_apis/test_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_extract.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx2ascend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx2ascend.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx2ncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx2ncnn.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx2openvino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx2openvino.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx2rknn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx2rknn.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx2tensorrt.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx2tvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx2tvm.py -------------------------------------------------------------------------------- /tests/test_apis/test_onnx_passes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_onnx_passes.py -------------------------------------------------------------------------------- /tests/test_apis/test_torch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_torch2onnx.py -------------------------------------------------------------------------------- /tests/test_apis/test_torch2torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_apis/test_torch2torchscript.py -------------------------------------------------------------------------------- /tests/test_backend/test_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_backend/test_wrapper.py -------------------------------------------------------------------------------- /tests/test_codebase/test_mmaction/data/ann.txt: -------------------------------------------------------------------------------- 1 | demo.mp4 6 2 | -------------------------------------------------------------------------------- /tests/test_codebase/test_mmagic/data/test_ann.txt: -------------------------------------------------------------------------------- 1 | blank.jpg 2 | -------------------------------------------------------------------------------- /tests/test_codebase/test_mmdet3d/data/kitti/training/velodyne_reduced/000008.bin: -------------------------------------------------------------------------------- 1 | ../../kitti_000008.bin -------------------------------------------------------------------------------- /tests/test_codebase/test_mmocr/data/text_recognition.txt: -------------------------------------------------------------------------------- 1 | test/1002_1.png NONE 2 | -------------------------------------------------------------------------------- /tests/test_codebase/test_mmpose/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_codebase/test_mmpose/utils.py -------------------------------------------------------------------------------- /tests/test_codebase/test_mmpretrain/data/imgs/ann.txt: -------------------------------------------------------------------------------- 1 | blank.jpg 0 2 | -------------------------------------------------------------------------------- /tests/test_codebase/test_mmseg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_codebase/test_mmseg/utils.py -------------------------------------------------------------------------------- /tests/test_core/package/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/package/__init__.py -------------------------------------------------------------------------------- /tests/test_core/package/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/package/module.py -------------------------------------------------------------------------------- /tests/test_core/test_function_rewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/test_function_rewriter.py -------------------------------------------------------------------------------- /tests/test_core/test_mark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/test_mark.py -------------------------------------------------------------------------------- /tests/test_core/test_module_rewriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/test_module_rewriter.py -------------------------------------------------------------------------------- /tests/test_core/test_rewriter_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/test_rewriter_utils.py -------------------------------------------------------------------------------- /tests/test_core/test_symbolic_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_core/test_symbolic_register.py -------------------------------------------------------------------------------- /tests/test_csrc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_csrc/capi/test_classifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/capi/test_classifier.cpp -------------------------------------------------------------------------------- /tests/test_csrc/capi/test_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/capi/test_detector.cpp -------------------------------------------------------------------------------- /tests/test_csrc/capi/test_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/capi/test_model.cpp -------------------------------------------------------------------------------- /tests/test_csrc/capi/test_restorer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/capi/test_restorer.cpp -------------------------------------------------------------------------------- /tests/test_csrc/capi/test_segmentor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/capi/test_segmentor.cpp -------------------------------------------------------------------------------- /tests/test_csrc/config/test_define.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/config/test_define.h.in -------------------------------------------------------------------------------- /tests/test_csrc/core/test_execution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/core/test_execution.cpp -------------------------------------------------------------------------------- /tests/test_csrc/core/test_mat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/core/test_mat.cpp -------------------------------------------------------------------------------- /tests/test_csrc/core/test_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/core/test_registry.cpp -------------------------------------------------------------------------------- /tests/test_csrc/core/test_span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/core/test_span.cpp -------------------------------------------------------------------------------- /tests/test_csrc/core/test_status_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/core/test_status_code.cpp -------------------------------------------------------------------------------- /tests/test_csrc/core/test_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/core/test_value.cpp -------------------------------------------------------------------------------- /tests/test_csrc/graph/test_cond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/graph/test_cond.cpp -------------------------------------------------------------------------------- /tests/test_csrc/model/test_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/model/test_model.cpp -------------------------------------------------------------------------------- /tests/test_csrc/model/test_zip_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/model/test_zip_model.cpp -------------------------------------------------------------------------------- /tests/test_csrc/net/test_ncnn_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/net/test_ncnn_net.cpp -------------------------------------------------------------------------------- /tests/test_csrc/net/test_openvino_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/net/test_openvino_net.cpp -------------------------------------------------------------------------------- /tests/test_csrc/net/test_ort_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/net/test_ort_net.cpp -------------------------------------------------------------------------------- /tests/test_csrc/net/test_ppl_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/net/test_ppl_net.cpp -------------------------------------------------------------------------------- /tests/test_csrc/net/test_trt_net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/net/test_trt_net.cpp -------------------------------------------------------------------------------- /tests/test_csrc/preprocess/test_crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/preprocess/test_crop.cpp -------------------------------------------------------------------------------- /tests/test_csrc/preprocess/test_load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/preprocess/test_load.cpp -------------------------------------------------------------------------------- /tests/test_csrc/preprocess/test_pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/preprocess/test_pad.cpp -------------------------------------------------------------------------------- /tests/test_csrc/preprocess/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/preprocess/test_utils.cpp -------------------------------------------------------------------------------- /tests/test_csrc/preprocess/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/preprocess/test_utils.h -------------------------------------------------------------------------------- /tests/test_csrc/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/test_main.cpp -------------------------------------------------------------------------------- /tests/test_csrc/test_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_csrc/test_resource.h -------------------------------------------------------------------------------- /tests/test_mmcv/test_mmcv_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_mmcv/test_mmcv_cnn.py -------------------------------------------------------------------------------- /tests/test_mmcv/test_mmcv_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_mmcv/test_mmcv_ops.py -------------------------------------------------------------------------------- /tests/test_ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_ops/__init__.py -------------------------------------------------------------------------------- /tests/test_ops/test_nms_match_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_ops/test_nms_match_small.py -------------------------------------------------------------------------------- /tests/test_ops/test_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_ops/test_ops.py -------------------------------------------------------------------------------- /tests/test_ops/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_ops/utils.py -------------------------------------------------------------------------------- /tests/test_pytorch/test_pytorch_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_pytorch/test_pytorch_ops.py -------------------------------------------------------------------------------- /tests/test_utils/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_utils/test_dataset.py -------------------------------------------------------------------------------- /tests/test_utils/test_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_utils/test_timer.py -------------------------------------------------------------------------------- /tests/test_utils/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tests/test_utils/test_util.py -------------------------------------------------------------------------------- /third_party/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/third_party/catch2/catch.hpp -------------------------------------------------------------------------------- /third_party/clipper/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/third_party/clipper/License.txt -------------------------------------------------------------------------------- /third_party/clipper/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/third_party/clipper/clipper.cpp -------------------------------------------------------------------------------- /third_party/clipper/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/third_party/clipper/clipper.hpp -------------------------------------------------------------------------------- /third_party/dlpack/dlpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/third_party/dlpack/dlpack.h -------------------------------------------------------------------------------- /third_party/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/third_party/json/json.hpp -------------------------------------------------------------------------------- /tools/check_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/check_env.py -------------------------------------------------------------------------------- /tools/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/deploy.py -------------------------------------------------------------------------------- /tools/elena/extract_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/elena/extract_transform.py -------------------------------------------------------------------------------- /tools/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/extract.py -------------------------------------------------------------------------------- /tools/generate_md_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/generate_md_table.py -------------------------------------------------------------------------------- /tools/onnx2dlc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/onnx2dlc.py -------------------------------------------------------------------------------- /tools/onnx2ncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/onnx2ncnn.py -------------------------------------------------------------------------------- /tools/onnx2ncnn_quant_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/onnx2ncnn_quant_table.py -------------------------------------------------------------------------------- /tools/onnx2pplnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/onnx2pplnn.py -------------------------------------------------------------------------------- /tools/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/onnx2tensorrt.py -------------------------------------------------------------------------------- /tools/onnx2vacc_quant_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/onnx2vacc_quant_dataset.py -------------------------------------------------------------------------------- /tools/package_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/package_tools/README.md -------------------------------------------------------------------------------- /tools/package_tools/mmdeploy_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/package_tools/mmdeploy_builder.py -------------------------------------------------------------------------------- /tools/package_tools/packaging/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/package_tools/packaging/MANIFEST.in -------------------------------------------------------------------------------- /tools/package_tools/packaging/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/package_tools/packaging/setup.py -------------------------------------------------------------------------------- /tools/package_tools/test/test_sdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/package_tools/test/test_sdk.ps1 -------------------------------------------------------------------------------- /tools/package_tools/test/test_sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/package_tools/test/test_sdk.sh -------------------------------------------------------------------------------- /tools/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/profiler.py -------------------------------------------------------------------------------- /tools/quant_image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/quant_image_dataset.py -------------------------------------------------------------------------------- /tools/regression_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/regression_test.py -------------------------------------------------------------------------------- /tools/scripts/build_base_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_base_image.sh -------------------------------------------------------------------------------- /tools/scripts/build_linux_nvidia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_linux_nvidia.sh -------------------------------------------------------------------------------- /tools/scripts/build_prebuild_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_prebuild_image.sh -------------------------------------------------------------------------------- /tools/scripts/build_ubuntu_x64_ncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_ubuntu_x64_ncnn.py -------------------------------------------------------------------------------- /tools/scripts/build_ubuntu_x64_ort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_ubuntu_x64_ort.py -------------------------------------------------------------------------------- /tools/scripts/build_ubuntu_x64_pplnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_ubuntu_x64_pplnn.py -------------------------------------------------------------------------------- /tools/scripts/build_ubuntu_x64_tvm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/build_ubuntu_x64_tvm.py -------------------------------------------------------------------------------- /tools/scripts/ubuntu_cross_build_rknn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/ubuntu_cross_build_rknn.sh -------------------------------------------------------------------------------- /tools/scripts/ubuntu_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/scripts/ubuntu_utils.py -------------------------------------------------------------------------------- /tools/sdk_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/sdk_analyze.py -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/torch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-mmlab/mmdeploy/HEAD/tools/torch2onnx.py --------------------------------------------------------------------------------