-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[NV TRT RTX EP] Leverage ORT allocator for workspace allocations #25564
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
Changes from all commits
2812ec9
68018b3
f3703e9
262657b
a41b131
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -78,6 +78,9 @@ | |||||
| // | ||||||
| class OutputAllocator : public nvinfer1::IOutputAllocator { | ||||||
| public: | ||||||
| OutputAllocator() = delete; | ||||||
| OutputAllocator(OrtAllocator* allocator) : alloc_(allocator) {}; | ||||||
|
Check warning on line 82 in onnxruntime/core/providers/nv_tensorrt_rtx/nv_execution_provider.h
|
||||||
|
||||||
| OutputAllocator(OrtAllocator* allocator) : alloc_(allocator) {}; | |
| OutputAllocator(OrtAllocator* allocator) : alloc_(allocator) {} |
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.
This commented-out line should be removed as it appears to be leftover debug/alternative implementation code.
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.
I want to keep this as a TODO for an improvement coming soon that uses
AllocOnStream