Skip to content

Commit

Permalink
core(view): explain what without initialization implies
Browse files Browse the repository at this point in the history
  • Loading branch information
romintomasetti committed Aug 28, 2024
1 parent 6b60851 commit 072c26d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docs/source/ProgrammingGuide/View.rst
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,11 @@ A typical use case would be:
6.4.2 Initialization
~~~~~~~~~~~~~~~~~~~~

A View's entries are initialized to zero by default. Initialization happens in parallel for first-touch allocation over the first (leftmost) dimension of the View using the execution space of the View.
A :code:`View`'s entries are initialized to zero by default.

You may allocate a View without initializing. For example:
Initialization happens in parallel for first-touch allocation over the first (leftmost) dimension of the :code:`View` using the execution space of the :code:`View`.

You may allocate a :code:`View` without initializing. For example:

.. code-block:: c++

Expand Down

0 comments on commit 072c26d

Please sign in to comment.