Skip to content

[SYCL][DOC]Add the missed ext_oneapi_ for sycl_ext_oneapi_peer_access. #17327

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

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ If the query returns false, attempting to concurrently access or atomically
modify USM device memory located on the `peer` device results in undefined
behavior.

|void enable_peer_access(const device &peer)
|void ext_oneapi_enable_peer_access(const device &peer)
|Enables this device to access USM device allocations located on the peer
device. This does not permit the peer device to access this device's memory.
Once this access is enabled, SYCL kernel functions and the explicit memory
Expand All @@ -157,7 +157,7 @@ If this device does not support peer access (as defined by
throws an exception with the `errc::invalid` error code.


|void disable_peer_access(const device &peer)
|void ext_oneapi_disable_peer_access(const device &peer)
|Disables access to the peer device's memory from this device. If peer access
is not enabled, throws an `exception` with the `errc::invalid` error code.

Expand Down
Loading