This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document cuda::annotated_ptr and related APIs
- Loading branch information
Showing
13 changed files
with
858 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM jekyll/jekyll:4.0 | ||
COPY Gemfile /Gemfile | ||
RUN /bin/bash -l -c "bundle install" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
## Memory access properties | ||
|
||
| [`cuda::annotated_ptr`] | Binds an access property to a pointer. `(class template)` <br/><br/> 1.6.0 / CUDA 11.5 | | ||
| [`cuda::access_property`] | Represents a memory access property. `(class)` <br/><br/> 1.6.0 / CUDA 11.5 | | ||
| [`cuda::apply_access_property`] | Applies access property to memory location. `(function template)` <br/><br/> 1.6.0 / CUDA 11.5 | | ||
| [`cuda::associate_access_property`] | Associates access property with raw pointer. `(function template)` <br/><br/> 1.6.0 / CUDA 11.5 | | ||
| [`cuda::discard_memory`] | Writes indeterminate values to memory. `(function)` <br/><br/> 1.6.0 / CUDA 11.5 | | ||
|
||
[`cuda::annotated_ptr`]: {{ "extended_api/memory_access_properties/annotated_ptr.html" | relative_url }} | ||
[`cuda::access_property`]: {{ "extended_api/memory_access_properties/access_property.html" | relative_url }} | ||
[`cuda::associate_access_property`]: {{ "extended_api/memory_access_properties/associate_access_property.html" | relative_url }} | ||
[`cuda::apply_access_property`]: {{ "extended_api/memory_access_properties/apply_access_property.html" | relative_url }} | ||
[`cuda::discard_memory`]: {{ "extended_api/memory_access_properties/discard_memory.html" | relative_url }} |
Oops, something went wrong.