Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void DirectSolverGive::initializeMumpsSolver(DMUMPS_STRUC_C& mumps_solver, Spars
mumps_solver.ICNTL(38) = 600; // Estimates compression rate of LU factors
mumps_solver.ICNTL(39) = 500; // Estimates compression rate of contribution blocks
// ICNTL(40-47) Don't exist
mumps_solver.ICNTL(48) = 1; // Multithreading with tree parallelism
mumps_solver.ICNTL(48) = 0; // Multithreading with tree parallelism
mumps_solver.ICNTL(49) = 0; // Compact workarray id%S at the end of factorization phase
// ICNTL(50-55) Don't exist
mumps_solver.ICNTL(56) =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void DirectSolverTake::initializeMumpsSolver(DMUMPS_STRUC_C& mumps_solver, Spars
mumps_solver.ICNTL(38) = 600; // Estimates compression rate of LU factors
mumps_solver.ICNTL(39) = 500; // Estimates compression rate of contribution blocks
// ICNTL(40-47) Don't exist
mumps_solver.ICNTL(48) = 1; // Multithreading with tree parallelism
mumps_solver.ICNTL(48) = 0; // Multithreading with tree parallelism
mumps_solver.ICNTL(49) = 0; // Compact workarray id%S at the end of factorization phase
// ICNTL(50-55) Don't exist
mumps_solver.ICNTL(56) =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void ExtrapolatedSmootherGive::initializeMumpsSolver(DMUMPS_STRUC_C& mumps_solve
mumps_solver.ICNTL(38) = 600; // Estimates compression rate of LU factors
mumps_solver.ICNTL(39) = 500; // Estimates compression rate of contribution blocks
// ICNTL(40-47) Don't exist
mumps_solver.ICNTL(48) = 1; // Multithreading with tree parallelism
mumps_solver.ICNTL(48) = 0; // Multithreading with tree parallelism
mumps_solver.ICNTL(49) = 0; // Compact workarray id%S at the end of factorization phase
// ICNTL(50-55) Don't exist
mumps_solver.ICNTL(56) =
Expand Down Expand Up @@ -109,4 +109,4 @@ void ExtrapolatedSmootherGive::finalizeMumpsSolver(DMUMPS_STRUC_C& mumps_solver)
dmumps_c(&mumps_solver);
}

#endif
#endif
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ void ExtrapolatedSmootherTake::initializeMumpsSolver(DMUMPS_STRUC_C& mumps_solve
mumps_solver.ICNTL(38) = 600; // Estimates compression rate of LU factors
mumps_solver.ICNTL(39) = 500; // Estimates compression rate of contribution blocks
// ICNTL(40-47) Don't exist
mumps_solver.ICNTL(48) = 1; // Multithreading with tree parallelism
mumps_solver.ICNTL(48) = 0; // Multithreading with tree parallelism
mumps_solver.ICNTL(49) = 0; // Compact workarray id%S at the end of factorization phase
// ICNTL(50-55) Don't exist
mumps_solver.ICNTL(56) =
Expand Down Expand Up @@ -109,4 +109,4 @@ void ExtrapolatedSmootherTake::finalizeMumpsSolver(DMUMPS_STRUC_C& mumps_solver)
dmumps_c(&mumps_solver);
}

#endif
#endif
4 changes: 2 additions & 2 deletions src/Smoother/SmootherGive/initializeMumps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void SmootherGive::initializeMumpsSolver(DMUMPS_STRUC_C& mumps_solver, SparseMat
mumps_solver.ICNTL(38) = 600; // Estimates compression rate of LU factors
mumps_solver.ICNTL(39) = 500; // Estimates compression rate of contribution blocks
// ICNTL(40-47) Don't exist
mumps_solver.ICNTL(48) = 1; // Multithreading with tree parallelism
mumps_solver.ICNTL(48) = 0; // Multithreading with tree parallelism
mumps_solver.ICNTL(49) = 0; // Compact workarray id%S at the end of factorization phase
// ICNTL(50-55) Don't exist
mumps_solver.ICNTL(56) =
Expand Down Expand Up @@ -108,4 +108,4 @@ void SmootherGive::finalizeMumpsSolver(DMUMPS_STRUC_C& mumps_solver)
dmumps_c(&mumps_solver);
}

#endif
#endif
4 changes: 2 additions & 2 deletions src/Smoother/SmootherTake/initializeMumps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void SmootherTake::initializeMumpsSolver(DMUMPS_STRUC_C& mumps_solver, SparseMat
mumps_solver.ICNTL(38) = 600; // Estimates compression rate of LU factors
mumps_solver.ICNTL(39) = 500; // Estimates compression rate of contribution blocks
// ICNTL(40-47) Don't exist
mumps_solver.ICNTL(48) = 1; // Multithreading with tree parallelism
mumps_solver.ICNTL(48) = 0; // Multithreading with tree parallelism
mumps_solver.ICNTL(49) = 0; // Compact workarray id%S at the end of factorization phase
// ICNTL(50-55) Don't exist
mumps_solver.ICNTL(56) =
Expand Down Expand Up @@ -108,4 +108,4 @@ void SmootherTake::finalizeMumpsSolver(DMUMPS_STRUC_C& mumps_solver)
dmumps_c(&mumps_solver);
}

#endif
#endif