forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Bell/fix onnx multi output failure #10
Open
songbell
wants to merge
20
commits into
riverlijunjie:river/fix_segmentfault_plugin_api_2.0
Choose a base branch
from
songbell:bell/fix_onnx_multi_output_failure
base: river/fix_segmentfault_plugin_api_2.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 14 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
0baadc5
change default value
songbell 8eb2e47
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell 5aa4e7b
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell 8438661
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell 6b6484b
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell b956852
fix case failure
songbell fc85ad3
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell 00141b6
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell d2c2f29
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell f74f417
fix post commit failure
songbell 968d0b9
Merge branch 'master' of https://github.com/openvinotoolkit/openvino
songbell 62a5d72
fix sdl issues
songbell a0228a5
Merge branch 'master' into bell/fix_sdl_issues
songbell 6be030b
Fixed SpaceToBatch and BatchToSpace for 3d case (#18033)
steve-y cb8d34d
[DOCS] adjustments for ST and cookie policy (#18315)
kblaszczak-intel 36fedf8
test onnx failures, reuse port tensors
songbell d0d16b6
Merge branch 'river/fix_segmentfault_plugin_api_2.0' of https://githu…
songbell 28bc478
Merge branch 'master' of https://github.com/openvinotoolkit/openvino …
songbell efaaa58
do not introduce new name
songbell e846c4b
clang
songbell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
get_ref_tensor() can avoid tensor mismatch issue, but
m_tensors.at(inputs[i].get_tensor_ptr())
itself should not have any problem?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can see that the compiled_mode are different:
original model:
IF not create input/output port, the final compile model:
If create input/output port, the final compile model, do in this PR, the final compile model will keep no change after tranformation
It seems that create input/output port will effect on the transformation, it is surprising.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did you remove the lines of set_names?