-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[TensorRT EP] Switch to enqueueV3 with support DDS output #17751
Closed
Closed
Changes from 26 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
de170d5
update
chilo-ms 3affd2e
update
chilo-ms 886bcce
update
chilo-ms ff9d3d2
update
chilo-ms ae69ca7
merge
chilo-ms 09f2401
update
chilo-ms 1e77cd1
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 5f82028
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 8f847ec
fix bug
chilo-ms 35d54b8
fix bugs
chilo-ms 5330dff
update
chilo-ms ed4849f
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 98b35ed
refactor
chilo-ms 018a6b4
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 0e79992
fix format
chilo-ms bc7e206
fix minor bug
chilo-ms 57ba208
remove redundant code
chilo-ms b1ec7cd
code refacotr
chilo-ms 9653143
fix format
chilo-ms 4e40cd3
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms ecc2566
update
chilo-ms 7ee0ee0
update
chilo-ms 98c8374
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 8567688
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms dc88e6b
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 2413e1d
Merge branch 'main' into chi/trt_enqueue_v3
chilo-ms 99e79dd
Add INT32/INT64 and float/double conversion for DDS outputs
chilo-ms e15a8bd
update for adding INT32/INT64 and float/double conversion for DDS out…
chilo-ms 8de13db
fix typo
chilo-ms 27ea00e
fix bug for using local buffer
chilo-ms 4ff9a85
code refactor and add cleanup for dds_output_allocator_map
chilo-ms 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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
why we want to expose it to CAPI? we have TRT based custom op?
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.
compile api based EP's need to implement compute_func which only has access to public OrtKernelContext api , not the internal OpKernelContext api.
we need to use SetOutputMLValue() so that's why it's plumbed thru to the public api in this PR