trilinos.github.io
trilinos.github.io copied to clipboard
Tpetra Lesson 04 contains out-of-date reference to dynamic profiles
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.
@trilinos/tpetra
Sorry for moving at snail pace on this, a pull request against Trilinos is in progress to update this part of the documentation.