Skip to content

Commit bb5aecd

Browse files
committed
Update
1 parent 99b7685 commit bb5aecd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Src/Base/AMReX_BaseFab.H

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void ResetTotalBytesAllocatedInFabsHWM () noexcept;
8686
/**
8787
* \brief Internal helper used by BaseFab constructors/destructors to maintain stats.
8888
* \param n Change in spatial grid points; used only when \p szt equals `sizeof(Real)`.
89-
* \param s Change in total number of stored elements (e.g. `truesize`).
89+
* \param s Change in total number of stored elements.
9090
* \param szt Size in bytes of the value type.
9191
*/
9292
void update_fab_stats (Long n, Long s, std::size_t szt) noexcept;
@@ -235,7 +235,7 @@ public:
235235
//! Construct an empty BaseFab that allocates through arena \p ar.
236236
explicit BaseFab (Arena* ar) noexcept;
237237

238-
//! Allocate \p n components over \p bx using arena-managed memory \p ar.
238+
//! Allocate \p n components over \p bx using memory arena \p ar.
239239
BaseFab (const Box& bx, int n, Arena* ar);
240240

241241
//! Make BaseFab with desired domain (box) and number of components.
@@ -461,12 +461,12 @@ public:
461461

462462
/**
463463
* \brief Advise the runtime to migrate storage to the host.
464-
* \note No effect unless managed memory backends are enabled.
464+
* \note No effect unless the managed memory is used in this fab.
465465
*/
466466
void prefetchToHost () const noexcept;
467467
/**
468468
* \brief Advise the runtime to migrate storage to the active device.
469-
* \note No effect unless managed memory backends are enabled.
469+
* \note No effect unless the managed memory is used in this fab.
470470
*/
471471
void prefetchToDevice () const noexcept;
472472

0 commit comments

Comments
 (0)