Skip to content

Commit

Permalink
minor re-wording
Browse files Browse the repository at this point in the history
  • Loading branch information
gberg617 committed Jan 23, 2024
1 parent 4546768 commit dbaa1c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/sphinx/user_guide/feature/view.rst
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ Index Layout
^^^^^^^^^^^^

``RAJA::IndexLayout`` is a layout that can use an index list to map input
indices to an entry within a view. Each dimension of the layout can have its
own indexing strategy to determine this mapping.
indices to an entry within a view. Each dimension of the layout is required to
have its own indexing strategy to determine this mapping.

Three indexing strategies are natively supported in RAJA: ``RAJA::DirectIndex``,
``RAJA::IndexList``, and ``RAJA::ConditionalIndexList``. ``DirectIndex``
Expand All @@ -344,7 +344,7 @@ constructor. The ``IndexList`` strategy takes a pointer to an array of
indices. With this strategy, a given input index is mapped to the entry in its
list corresponding to that index. Lastly, the
``ConditionalIndexStrategy`` takes a pointer to an array of indices. When
the pointer is not a nullptr, the ``ConditionalIndex`` strategy is
the pointer is not a null pointer, the ``ConditionalIndex`` strategy is
equivalent to that of the ``IndexList``. If the index list provided to
the constructor is a null pointer, the ``ConditionalIndexList`` is
identical to the ``DirectIndex`` strategy. The
Expand Down

0 comments on commit dbaa1c3

Please sign in to comment.