-
Notifications
You must be signed in to change notification settings - Fork 81
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
Bring PackedFunc
into TVM Object System
#51
Conversation
PackedFunc
into TVM Object System
CC @wweic |
|
||
Only one major object is introduced, `PackedFuncObj`, a TVM object in the runtime system (detailed in the next section) which is an ABI stable data structure for packed functions that could be shared across language and DLL boundary. | ||
|
||
To avoid API misuse from developers, the `PackedFuncObj` cannot be created or manipulated directly, and the specialization of its creation `make_object<PackedFuncObj>` will be deleted for safety. Instead, the developer-facing class `PackedFunc` remains responsible for creating and managing the object, and for properly setting its content. |
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.
Can you please elaborate a bit about the risk of enabling make_object<PackedFuncObj>
?
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.
Sure. Since the PackedFuncObj
is an abstract object only, it is not allowed to be created directly, while its derived classes are allowed to do so.
Fix a typo Co-authored-by: Xiyou Zhou <xiyou.zhou@gmail.com>
@cyx-6 thanks for raising this formal RFC. i chatted with @junrushao1994 and he reminded me that for PackedFunc registered directly with the C++ runtime, there is a fast path in calling them from C++ that avoid re-encoding the arguments into the documented PackedFunc C ABI. using this fast path in the context of a single project makes sense; however, as you point out here in "Unresolved questions," it also means that we may enshrine a de-facto ABI between TVM and other projects which is considerably more complex. i'm okay with creating this ABI if it provides a clear benefit over the already-defined one. if it doesn't, i would prefer that we do something different, such as extracting it would be great to motivate creating this second ABI with some details about why you can't use the already-defined PackedFunc ABI. performance is a perfectly-good reason, but the RFC says nothing about that. would you mind adding this detail so it is clear why we are doing this? i don't want to create a precedent of going around the PackedFunc ABI since it is presently so universal. |
Thanks @areusch for your questions! Just to provide more context, it's worth mentioning that the majority of DL compilers built on top of the TVM compiler (not only the runtime) use TVM's C++ APIs directly in the project, i.e. all the C++ APIs under
To be clear, the primary motivation of this RFC isn't about performance, but about usability - TVM-based compilers use
To clarify, This RFC isn't creating new ABIs, just refactoring existing ones. Note that existing TVM-based DL compilers all use C++ APIs instead of C APIs (the generated kernel uses C ABI though). This RFC mainly focuses on standardization of a single specific layout-stable implementation of
I like this proposal. AFAIK there is long-term need from other libraries (e.g. DGL, MXNet) to incorporate with the TVM object/FFI system because it's really easy to use. However, I would say it's separate need from this RFC, but if anyone is interested, please feel free to do so.
For context, TVM is largely used as a C++ submodule in DL compilers, where all its C++ APIs under |
Hey @areusch would you like to follow up on the discussion? Thanks a lot! Also CC: @comaniac @spectrometerHBH @Hzfengsy if you have further comments |
thanks @cyx-6 sorry for the delay
I think this is the key part here. can you add this description (about |
@cyx-6 would you mind updating the RFC according to our discussion here and on the forum? Also, please include your PR apache/tvm#10032 in the RFC? |
Thanks for @areusch and @junrushao1994 's suggestions. I have updated the RFC according to discussion here and on the forum. |
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.
LGTM :-)
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.
thanks @cyx-6 !
Thank you @cyx-6 @AndrewZhaoLuo @zxybazh all for the discussion! It's very valuable and informative :-) |
@cyx-6 the RFC is merged! please open a new GitHub issue in apache/tvm (the "Feature Tracking" type), enumerate the PRs expected in that issue, and cite this RFC so others can find it for context. Thanks again for working on this! |
* [RFC][Runtime] Bring `PackedFunc` into TVM Object System * Apply suggestions from code review Fix a typo Co-authored-by: Xiyou Zhou <xiyou.zhou@gmail.com> * Apply suggestions from RFC review Co-authored-by: Xiyou Zhou <xiyou.zhou@gmail.com>
Please join me in welcoming Yaxing Cai (@cyx-6) as a new reviewer in TVM. Yaxing has brought the PackedFunc into TVM object system ([RFC-051](apache/tvm-rfcs#51)), designed and implemented the new parser infrastructure for TVMScript and meta-programming ([RFC-079](apache/tvm-rfcs#79)) - [Commits History](https://github.com/apache/tvm/commits?author=cyx-6) - [Code Review](https://github.com/apache/tvm/pulls?q=reviewed-by%3Acyx-6+)
Please join me in welcoming Yaxing Cai (@cyx-6) as a new reviewer in TVM. Yaxing has brought the PackedFunc into TVM object system ([RFC-051](apache/tvm-rfcs#51)), designed and implemented the new parser infrastructure for TVMScript and meta-programming ([RFC-079](apache/tvm-rfcs#79)) - [Commits History](https://github.com/apache/tvm/commits?author=cyx-6) - [Code Review](https://github.com/apache/tvm/pulls?q=reviewed-by%3Acyx-6+)
Please join me in welcoming Yaxing Cai (@cyx-6) as a new reviewer in TVM. Yaxing has brought the PackedFunc into TVM object system ([RFC-051](apache/tvm-rfcs#51)), designed and implemented the new parser infrastructure for TVMScript and meta-programming ([RFC-079](apache/tvm-rfcs#79)) - [Commits History](https://github.com/apache/tvm/commits?author=cyx-6) - [Code Review](https://github.com/apache/tvm/pulls?q=reviewed-by%3Acyx-6+)
Bring
PackedFunc
into TVM Object System