@@ -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 */
9292void 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