From 7e85651c5ef108282ab2898eaa25fde6b1f550f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wr=C3=B3bel?= Date: Mon, 29 Aug 2022 16:51:17 +0200 Subject: [PATCH] #120: - API/core/view/view_like transition from .md to .rst --- docs/source/API/core/view/view_like.md | 9 --------- docs/source/API/core/view/view_like.rst | 11 +++++++++++ 2 files changed, 11 insertions(+), 9 deletions(-) delete mode 100644 docs/source/API/core/view/view_like.md create mode 100644 docs/source/API/core/view/view_like.rst diff --git a/docs/source/API/core/view/view_like.md b/docs/source/API/core/view/view_like.md deleted file mode 100644 index abd63d0a0..000000000 --- a/docs/source/API/core/view/view_like.md +++ /dev/null @@ -1,9 +0,0 @@ -# View-like Types - -View-like types are loosely defined as the set of class templates that behave like [Kokkos::View](view) 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) - * [Kokkos::DynRankView](../../containers/DynRankView) - * [Kokkos::OffsetView](../../containers/Offset-View) - * [Kokkos::DynamicView](../../containers/DynamicView) - -Notably, [Kokkos::DualView](../../containers/DualView) and [Kokkos::ScatterView](../../containers/ScatterView) are **not** included in this category. diff --git a/docs/source/API/core/view/view_like.rst b/docs/source/API/core/view/view_like.rst new file mode 100644 index 000000000..69c15fc0f --- /dev/null +++ b/docs/source/API/core/view/view_like.rst @@ -0,0 +1,11 @@ +View-like Types +=============== + +View-like types are loosely defined as the set of class templates that behave like `Kokkos::View `__ 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 `_ +* `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.