-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from marcinwrobel1986/120-API-core-view-view_…
…like #120: API-core-view-view_like from md to rst
- Loading branch information
Showing
2 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
View-like Types | ||
=============== | ||
|
||
View-like types are loosely defined as the set of class templates that behave like `Kokkos::View <view.html>`__ from an interface perspective. There is not a full formal definition of what this means yet, which means there is no way for users to add to this list in a way that the new class is recognized by Kokkos facilities operating on View-like things. In Kokkos these class templates are considered View-like: | ||
|
||
* `Kokkos::View <view.html>`_ | ||
* `Kokkos::DynRankView <../../containers/DynRankView.html>`_ | ||
* `Kokkos::OffsetView <../../containers/Offset-View.html>`_ | ||
* `Kokkos::DynamicView <../../containers/DynamicView.html>`_ | ||
|
||
Notably, `Kokkos::DualView <../../containers/DualView.html>`_ and `Kokkos::ScatterView <../../containers/ScatterView.html>`_ are **not** included in this category. |