Skip to content

Commit

Permalink
Merge Pull Request trilinos#6364 from lucbv/Trilinos/MueLu_varying_op…
Browse files Browse the repository at this point in the history
…erator_complexity

Automatically Merged using Trilinos Pull Request AutoTester
PR Title: MueLu: ignoring OperatorComplexity in ParameterListInterpreter for kokkos, see issue trilinos#6361
PR Author: lucbv
  • Loading branch information
trilinos-autotester authored Nov 27, 2019
2 parents 8c8970b + cf1bcb6 commit 5778f1c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/muelu/test/interface/ParameterListInterpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,10 @@ int main_(Teuchos::CommandLineProcessor &clp, Xpetra::UnderlyingLib& lib, int ar
replacementString = "Global matrix dimensions: <ignored>, Global nnz: <ignored>";
run_sed("'s/" + stringToReplace + "/" + replacementString + "/'", baseFile);

// Catch smoother complexity output from MueLu
// Catch operator/smoother complexity output from MueLu
stringToReplace = "Operator complexity = " + floatRegex;
replacementString = "Operator complexity = <ignored>";
run_sed("'s/" + stringToReplace + "/" + replacementString + "/'", baseFile);
stringToReplace = "Smoother complexity = " + floatRegex;
replacementString = "Smoother complexity = <ignored>";
run_sed("'s/" + stringToReplace + "/" + replacementString + "/'", baseFile);
Expand Down

0 comments on commit 5778f1c

Please sign in to comment.