On 2/8/23 22:11, Lex Lee wrote:

I am using UMFPACK to directly solve my large system equation Ax=b. The solver process is very slow, as only one core of CPU is involved while running. I am trying to connect UMFPACK with Trilinos, I mean, solve the equation in multithread / parallel mode in deal.II. I know some tutorials in deal.II library talking about parallel computing, however, it looks like not that relevant to my case.

Can someone give me some hints about playing with UMFPACK and Trilinos together in deal.II?

You can't. UMFPACK can neither use MPI parallelization, nor does it use threads to use multiple cores. It is what it is.

But the Trilinos interfaces have a class that uses a parallel direct solver: TrilinosWrappers::SolverDirect

https://dealii.org/developer/doxygen/deal.II/classTrilinosWrappers_1_1SolverDirect.html
that can help in cases like yours.

Best
 W.

--
------------------------------------------------------------------------
Wolfgang Bangerth          email:                 bange...@colostate.edu
                           www: http://www.math.colostate.edu/~bangerth/

--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dealii/93cd2b48-a40c-6350-3b79-cdddfa6e025e%40colostate.edu.

Reply via email to