-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FrontEnd]enable pdpd ops conversion part4: deformable_convolution, multiclass_nms and matrix_nms. #6619
Closed
ceciliapeng2011
wants to merge
122
commits into
openvinotoolkit:master
from
ceciliapeng2011:cecilia/PR/dcn_and_nms
Closed
[FrontEnd]enable pdpd ops conversion part4: deformable_convolution, multiclass_nms and matrix_nms. #6619
ceciliapeng2011
wants to merge
122
commits into
openvinotoolkit:master
from
ceciliapeng2011:cecilia/PR/dcn_and_nms
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@itikhono @nosovmik @ilya-lavrenov @ilyachur @jane-intel @luo-cheng2021 @zhangYiIntel request your review. |
ceciliapeng2011
requested review from
itikhono,
nosovmik,
ilya-lavrenov,
ilyachur and
jane-intel
July 13, 2021 09:01
ceciliapeng2011
changed the title
Cecilia/pr/dcn and nms
op conversion for deformable_convolution, multiclass_nms and matrix_nms.
Jul 13, 2021
ceciliapeng2011
changed the title
op conversion for deformable_convolution, multiclass_nms and matrix_nms.
PDPD frontend op conversion for deformable_convolution, multiclass_nms and matrix_nms.
Jul 13, 2021
* Add python test * expose node version to python api
…tion output primitive (openvinotoolkit#6530) - Add common comparator for sort function to be aligned with others(cldnn/mkldnn DO primitive) Signed-off-by: Andrew Kwangwoong Park <[email protected]> Apply clang-format to do ngraph reference code Signed-off-by: Andrew Kwangwoong Park <[email protected]> Apply code review Signed-off-by: Andrew Kwangwoong Park <[email protected]>
Ticket: #59063 Summary: try to fuse zero point to the weights in order to make the zero point == 0.
…lkit#6462) - fix InsertTransposeAfterConvOrPool transformation copying runtime info
* - add SwapInputMatMul transformation unit tests - fix SwapInputMatMul matcher pattern * code review fixes: remove unused piece of code * use clone function instead of creating reference function code duplicate
…gins (openvinotoolkit#6176) * [IE][VPU]: Refactors PROTOCOL configuration option * [IE][VPU]: Refactors POWER_CONFIG configuration option * [IE][VPU]: Refactors HW_OPTIMIZATION configuration option * [IE][VPU]: Refactors HW_EXTRA_SPLIT configuration option * [IE][VPU]: Refactors HW_BLACK_LIST configuration option * [IE][VPU]: Refactors TILING_CMX_LIMIT_KB configuration option * [IE][VPU]: Refactors WATCHDOG_INTERVAL configuration option * [IE][VPU]: Refactors PRINT_RECEIVE_TENSOR_TIME configuration option * [IE][VPU]: Refactors PERF_REPORT_MODE configuration option * [IE][VPU]: Refactors PERF_COUNT configuration option * [IE][VPU]: Refactors PACK_DATA_IN_CMX configuration option * [IE][VPU]: Refactors NUMBER_OF_SHAVES configuration option * [IE][VPU]: Refactors NUM_EXECUTORS configuration option * [IE][VPU]: Refactors NUM_CMX_SLICES configuration option * [IE][VPU]: Refactors HW_POOL_CONV_MERGE configuration option * [IE][VPU]: Refactors TENSOR_STRIDES configuration option * [IE][VPU]: Refactors INJECT_SW_OPS configuration option * [IE][VPU]: Refactors IGNORE_UNKNOWN_LAYERS configuration option * [IE][VPU]: Remove HW_WHITE_LIST configuration option * [IE][VPU]: Refactors HW_DILATION configuration option * [IE][VPU]: Refactors FORCE_PURE_TENSOR_ITERATOR configuration option * [IE][VPU]: Remove FORCE_DEPRECATED_CNN_CONVERSION configuration option * [IE][VPU]: Refactors EXCLUSIVE_ASYNC_REQUESTS configuration option * [IE][VPU]: Refactors ENABLE_WEIGHTS_ANALYSIS configuration option * [IE][VPU]: Refactors ENABLE_TENSOR_ITERATOR_UNROLLING configuration option * [IE][VPU]: Refactors ENABLE_REPL_WITH_SCRELU configuration option * [IE][VPU]: Remove ENABLE_REPLACE_WITH_REDUCE_MEAN configuration option * [IE][VPU]: Refactors ENABLE_PERMUTE_MERGING configuration option * [IE][VPU]: Refactors ENABLE_MEMORY_TYPES_ANNOTATION configuration options * [IE][VPU]: Refactors DUMP_INTERNAL_GRAPH_FILE_NAME configuration options * [IE][VPU]: Refactors DUMP_ALL_PASSES_DIRECTORY configuration options * [IE][VPU]: Refactors DUMP_ALL_PASSES configuration options * [IE][VPU]: Refactors DISABLE_REORDER configuration option * [IE][VPU]: Refactors DISABLE_CONVERT_STAGES configuration option * [IE][VPU]: Refactors DEVICE_ID configuration option * [IE][VPU]: Refactors DEVICE_CONNECT_TIMEOUT configuration option * [IE][VPU]: Refactors DETECT_NETWORK_BATCH configuration option * [IE][VPU]: Refactors CUSTOM_LAYERS configuration option * [IE][VPU]: Refactors MEMORY_TYPE configuration option * [IE][VPU]: Refactors FORCE_RESET configuration option * [IE][VPU]: Refactors PLATFORM configuration options * [IE][VPU]: Remove PLUGIN_LOG_FILE_PATH configuration options * [IE][VPU]: Remove COMPILER_LOG_FILE_PATH configuration options * [IE][VPU]: Refactors CHECK_PREPROCESSING_INSIDE_MODEL configuration option * [IE][VPU]: Refactors ENABLE_EARLY_ELTWISE_RELU_FUSION configuration option * [IE][VPU]: Refactors ENABLE_CUSTOM_RESHAPE_PARAM configuration option * [IE][VPU]: Refactors NONE_LAYERS configuration option * [IE][VPU]: Remove INPUT_SCALE and INPUT_BIAS configuration option * [IE][VPU]: Refactors ENABLE_ASYNC_DMA configuration options * [IE][VPU]: Delete old configuration API
1. Include shape sub-graphs optimization in the model optimizer nGraph pipeline 2. Extend shape sub-graph optimizations with useless Concat and useless Gather optimization
* nms python api * fix python code style * fix python code style * apply review comments * apply review comments
…notoolkit#6626) * Add information about model preparation * Add the missed file extension for the onnx model * [c] Add information about model preparation * [cpp] Add information about model preparation * Update the string about model converter * Specify a model name at steps 1 and 2 of the running example
* [GNA] Add fake quantize support for convolution padding Combine seven ngraph matcher passes into two. Remove max pool size checking. Add ngraph reference tests for subgraphs which were processed by POT. Fix remaining issues with Max Pooling output calculations. Add setting of default compile target based on execution target. * [GNA] Remove redundant subgraph matcher * [GNA] Remove redundant subgraph matcher
* Install guides improvements * add bullet to conda System Requirements * fix formating * - Add conda install command for Ubuntu20 - fix typo /tmp * added conda prerequisites * Update installing-openvino-apt.md * Update installing-openvino-conda.md * Update installing-openvino-conda.md CentOS 7.6 * Update installing-openvino-apt.md APT Repository * Update installing-openvino-conda.md Added Introduction & notice about runtime package * Update installing-openvino-conda.md Co-authored-by: Andrey Zaytsev <[email protected]>
- Move RemoveEdge from graph optimizer to graph - Remove extra removeEdge lambdas
* Move type prop tests to separate file, add cases with exceptions thrown * Add visitor test, add step to pbc attributes * SLT for CPU, adjust GPU and SSLT to serve the step attr * Add backend test * Fix variance issue, verify by SLT * Formatting fix * Add another backend testcase * Add PriorBoxClustered to trusted ops list * Add step attr description, remove obsolete comments from ref impl * Test multiple step values in SLT
ceciliapeng2011
changed the title
PDPD frontend op conversion for deformable_convolution, multiclass_nms and matrix_nms.
[FrontEnd]enable pdpd ops conversion part4: deformable_convolution, multiclass_nms and matrix_nms.
Jul 27, 2021
* Remove deprectaed convolution API. * Apply correct style.
ilyachur
approved these changes
Jul 27, 2021
Please fix CI |
recreated and replaced by #6833. This one is unintentionally closed. |
…penvino into cecilia/PR/dcn_and_nms
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Details:
enable 3 op conversions for PDPD frontend. They are opset8 operations asked by PaddlePaddle detection NN.
Tickets: