-
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
[Feature] Compatibility to DLPack 0.6 in tensoradapter #3803
Conversation
To trigger regression tests:
|
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 noticed that PyTorch has made dlpack
a part of the package:
https://github.com/pytorch/pytorch/blob/1a917e637c969de7e20c66227e689e007c9b2fc2/aten/src/ATen/dlpack.h
I wonder if it is possible to include dlpack from PyTorch instead of from our 3rd-party directory (which is usually not synced with PyTorch) for our torch backend?
I think it's not a big deal since the ABI did not change. |
@BarclayII When can I expect this PR being merged? |
* compatibility to DLPack 0.6 in tensoradapter * fix * oops Co-authored-by: Jinjing Zhou <VoVAllen@users.noreply.github.com>
This is to make tensoradapter compilable against PyTorch 1.11, which upgrades DLPack to 0.6.0 that renamed a bunch of stuff.