trilinos.github.io icon indicating copy to clipboard operation
trilinos.github.io copied to clipboard

Tpetra Lesson 04 contains out-of-date reference to dynamic profiles

Open jjramsey opened this issue 11 months ago • 2 comments

Lesson 04 on the site has this code fragment:

RCP<const Map<LO, GO, NT> > rowMap = ...; // whatever row Map you want
// With dynamic profile, this is only a hint, not a hard constraint.
const size_t maxEntriesPerRow = 3;
RCP<CrsMatrix<ST, LO, GO, NT> > A = 
  rcp (new CrsMatrix<ST, LO, GO, NT> (rowMap, maxEntriesPerRow));

However, in the documentation for the CrsMatrix constructor used in that fragment, it describes maxEntriesPerRow as a "strict upper bound".

I'm wondering if the whole of the Doxygen documentation for Tpetra on the website needs updating.

jjramsey avatar Apr 01 '25 17:04 jjramsey

@trilinos/tpetra

mayrmt avatar Apr 01 '25 17:04 mayrmt

Sorry for moving at snail pace on this, a pull request against Trilinos is in progress to update this part of the documentation.

lucbv avatar Jun 04 '25 16:06 lucbv