forked from NGSolve/ngsolve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPARALLEL.HOWTO
38 lines (19 loc) · 859 Bytes
/
PARALLEL.HOWTO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Parallel Netgen / NGSolve
Netgen/NGSolve supports distributed memory MPI - parallelization.
To compile parallel Netgen/NGSolve you need the following packages installed:
- mpi (tested with openmpi, mpich2)
- metis (mesh partitioning library)
Configure Netgen and NGSolve with:
./configure --enable-parallel CXX=mpic++
run Netgen in parallel (with 8 processes) with
mpiexec -np 8 netgen
NGS parallelization supports:
- mesh distribution:
testing: load mesh will distributed it
- parallel NGSolve - pde data structure including fespaces, biforms, distributed sparse matrices
- BDDC preconditioning
- parallel direct solver mumps
MPI and OpenMP
- parallel compute thread is supported, but it requires multi-threading capable MPI
openmpi (tested with 1.4.3) needs configuration with --enable-mpi-threads
- openmp threads are disabled