Skip to content
forked from iree-org/iree
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

Merged

Conversation

devtbi
Copy link

@devtbi devtbi commented Feb 24, 2025

TL;DR

Added support for copying HAL buffer views between/on devices.

What changed?

  • Added AllocateBufferViewCopy method to HalAllocator to enable copying buffer views between/the same devices
  • Added CreateViewLike method to HalBuffer to create views with matching characteristics
  • Added ExportBuffer and ImportBuffer methods to support cross-device buffer transfers
  • Added GetInfo method to HalDevice to retrieve device identifier and ID
  • Updated Python type hints and bindings to expose new functionality
  • Added tests to verify buffer view copying behavior, including sliced views

Copy link
Author

devtbi commented Feb 24, 2025

@devtbi devtbi changed the title feat(iree): Add AllocateBufferViewCopy Add AllocateBufferViewCopy Feb 24, 2025
@devtbi devtbi changed the title Add AllocateBufferViewCopy Add AllocateBufferViewCopy and CreateViewLike Feb 24, 2025
@devtbi devtbi changed the title Add AllocateBufferViewCopy and CreateViewLike Add AllocateBufferViewCopy and CreateViewLike in python runtime Feb 24, 2025
@devtbi devtbi marked this pull request as ready for review February 25, 2025 08:34
@devtbi devtbi changed the base branch from integrate-iree-20250217 to graphite-base/28 March 3, 2025 23:28
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from e988ed6 to 102bcfb Compare March 3, 2025 23:28
@devtbi devtbi changed the base branch from graphite-base/28 to fuchs/roo-231-expose-internal-device-id-of-hal-device March 3, 2025 23:28
@devtbi devtbi marked this pull request as draft March 3, 2025 23:29
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 102bcfb to 7c7b31f Compare March 4, 2025 09:13
@devtbi devtbi force-pushed the fuchs/roo-231-expose-internal-device-id-of-hal-device branch from ac1d956 to 05af84a Compare March 4, 2025 09:13
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 7c7b31f to 2b5a697 Compare March 4, 2025 09:38
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 2b5a697 to 02ac789 Compare March 17, 2025 07:54
@devtbi devtbi changed the title Add AllocateBufferViewCopy and CreateViewLike in python runtime Add support for BufferView copy and cross-dev-type transfer in python runtime Mar 17, 2025
@devtbi devtbi marked this pull request as ready for review March 17, 2025 07:59
@devtbi devtbi force-pushed the fuchs/roo-231-expose-internal-device-id-of-hal-device branch from 05af84a to e762d11 Compare March 17, 2025 09:00
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 02ac789 to e9300ab Compare March 17, 2025 09:00
Copy link

@maxbartel maxbartel left a 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?

@devtbi devtbi changed the base branch from fuchs/roo-231-expose-internal-device-id-of-hal-device to graphite-base/28 March 23, 2025 17:38
@devtbi devtbi force-pushed the graphite-base/28 branch from e762d11 to 68e89e3 Compare March 23, 2025 17:38
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from e9300ab to 566ffba Compare March 23, 2025 17:38
@graphite-app graphite-app bot changed the base branch from graphite-base/28 to integrate-iree-20250217 March 23, 2025 17:38
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 566ffba to 10b8bf6 Compare March 23, 2025 17:39
Copy link
Author

devtbi commented Mar 23, 2025

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..
iree_hal_allocator_export_buffer, is used to get a raw pointer to the underlying memory of the buffer & with import you can create a handle to that memory in the native buffer type- all assuming that the orignal buffer is kept alive & the user has to ensure that the memory is actually accessible by the target.
Also used for the dlpack import & export mechanism.

@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 10b8bf6 to fe676df Compare March 27, 2025 14:31
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from fe676df to 4688d51 Compare March 31, 2025 06:50
@devtbi devtbi changed the base branch from integrate-iree-20250217 to graphite-base/28 March 31, 2025 08:26
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from 4688d51 to c2fc6c5 Compare March 31, 2025 08:26
@devtbi devtbi changed the base branch from graphite-base/28 to fuchs/safer-CheckApiStatus March 31, 2025 08:26
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from c2fc6c5 to d8646c4 Compare March 31, 2025 10:10
@devtbi devtbi force-pushed the fuchs/safer-CheckApiStatus branch from d0e75b7 to 1c80aec Compare March 31, 2025 10:10
@devtbi devtbi changed the base branch from fuchs/safer-CheckApiStatus to graphite-base/28 March 31, 2025 10:57
@devtbi devtbi force-pushed the graphite-base/28 branch from 1c80aec to db3e965 Compare March 31, 2025 10:57
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from d8646c4 to cbffb3c Compare March 31, 2025 10:57
@graphite-app graphite-app bot changed the base branch from graphite-base/28 to integrate-iree-20250217 March 31, 2025 10:57
@devtbi devtbi force-pushed the fuchs/roo-198-copy-tensorhalbufferview branch from cbffb3c to 2a7b136 Compare March 31, 2025 10:58
@devtbi devtbi merged commit 998bf80 into integrate-iree-20250217 Mar 31, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants