Skip to content

Commit e054f34

Browse files
committed
Add TODO comment for TpetraExt_TripleMatrixMultiply compilation issue and remove unused MultiVectorType definition
1 parent 5c90082 commit e054f34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

applications/TrilinosApplication/trilinos_space_experimental.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,6 +828,7 @@ class TrilinosSpaceExperimental
828828
* @param CallFillCompleteOnResult Optional argument, defaults to true. Power users may specify this argument to be false if they DON'T want this function to call C.FillComplete. (It is often useful to allow this function to call C.FillComplete, in cases where one or both of the input matrices are rectangular and it is not trivial to know which maps to use for the domain- and range-maps.)
829829
* @param KeepAllHardZeros Optional argument, defaults to false. If true, Multiply, keeps all entries in C corresponding to hard zeros. If false, the following happens by case: A*B^T, A^T*B^T - Does not store entries caused by hard zeros in C. A^T*B (unoptimized) - Hard zeros are always stored (this option has no effect) A*B, A^T*B (optimized) - Hard zeros in corresponding to hard zeros in A are not stored, There are certain cases involving reuse of C, where this can be useful.
830830
* @param EnforceInitialGraph If the initial graph is enforced, or a new one is generated
831+
* @todo TpetraExt_TripleMatrixMultiply_def is failing compilation in the version of Trilinos available in Ubuntu 20.04. We cannot use TripleMatrixMultiply::MultiplyRAP
831832
*/
832833
inline static void BDBtProductOperation(
833834
MatrixType& rA,
@@ -2359,7 +2360,6 @@ class TrilinosSpaceExperimental
23592360
MapPointerType p_map = Teuchos::rcp(new MapType(static_cast<GO>(N), 0, pComm));
23602361

23612362
// Read dense file into a regular (non-FE) MultiVector
2362-
using MultiVectorType = Tpetra::MultiVector<ST, LO, GO, NT>;
23632363
auto p_mv = Tpetra::MatrixMarket::Reader<CrsMatrixType>::readDenseFile(rFileName, pComm, p_map);
23642364

23652365
// Create FEMultiVector and copy values via update

0 commit comments

Comments
 (0)