-
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
Add support for BufferView copy and cross-dev-type transfer in python runtime #28
Add support for BufferView copy and cross-dev-type transfer in python runtime #28
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
e988ed6
to
102bcfb
Compare
102bcfb
to
7c7b31f
Compare
ac1d956
to
05af84a
Compare
7c7b31f
to
2b5a697
Compare
2b5a697
to
02ac789
Compare
05af84a
to
e762d11
Compare
02ac789
to
e9300ab
Compare
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 think this should be good. However can you explain the import and export functions a bit? Maybe even with a small rationale?
e762d11
to
68e89e3
Compare
e9300ab
to
566ffba
Compare
566ffba
to
10b8bf6
Compare
Yep, the export/import is needed here, because transfering memory expcets the buffers to be of the same buffer-type (every driver has its own buffer type).. so one of the buffers first has to be exported from the original allocator, and imported into the type of the device performing the transfer. So.. |
10b8bf6
to
fe676df
Compare
fe676df
to
4688d51
Compare
4688d51
to
c2fc6c5
Compare
c2fc6c5
to
d8646c4
Compare
d0e75b7
to
1c80aec
Compare
1c80aec
to
db3e965
Compare
d8646c4
to
cbffb3c
Compare
cbffb3c
to
2a7b136
Compare
TL;DR
Added support for copying HAL buffer views between/on devices.
What changed?
AllocateBufferViewCopy
method toHalAllocator
to enable copying buffer views between/the same devicesCreateViewLike
method toHalBuffer
to create views with matching characteristicsExportBuffer
andImportBuffer
methods to support cross-device buffer transfersGetInfo
method toHalDevice
to retrieve device identifier and ID