File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,10 @@ std::shared_ptr<Core::LinAlg::Graph> Core::Rebalance::rebalance_graph(
6262{
6363 TEUCHOS_FUNC_TIME_MONITOR (" Rebalance::rebalance_graph" );
6464
65+ rebalanceParams.set (" debug_level" , " no_status" );
66+ Teuchos::ParameterList& zparams = rebalanceParams.sublist (" zoltan_parameters" , false );
67+ zparams.set (" debug_level" , " 0" );
68+
6569 if (!initialGraph.filled ()) FOUR_C_THROW (" Graph to be rebalanced is not completed yet!" );
6670
6771 using GraphAdapter = Zoltan2::XpetraCrsGraphAdapter<Epetra_CrsGraph, Epetra_MultiVector>;
@@ -130,6 +134,10 @@ Core::Rebalance::rebalance_coordinates(const Core::LinAlg::MultiVector<double>&
130134{
131135 TEUCHOS_FUNC_TIME_MONITOR (" Rebalance::rebalance_coordinates" );
132136
137+ rebalanceParams.set (" debug_level" , " no_status" );
138+ Teuchos::ParameterList& zparams = rebalanceParams.sublist (" zoltan_parameters" , false );
139+ zparams.set (" debug_level" , " 0" );
140+
133141 using VectorAdapter = Zoltan2::XpetraMultiVectorAdapter<Epetra_MultiVector>;
134142
135143 std::vector<const double *> weights (initialWeights.num_vectors ());
You can’t perform that action at this time.
0 commit comments