Hi,
we have built netgen/ngsolve with occ on Linux from sources successfully and we can run most examples successfully. If we run “netgen navierstokes.py” we get error messages like:
Setup and Factorization: PARDISO returned error -3!
err = reordering problem
symmetric = 0
spd = 0
compressed = 1
inner = 0x7f81240660f0
cluster = 0
Traceback (most recent call last):
File "<string>", line 43, in <module>
netgen.libngpy._meshing.NgException: PardisoInverse: Setup and Factorization failed.
Finished executing navierstokes.py
Setup and Factorization: PARDISO returned error -2!
err = not enough memory
symmetric = 0
spd = 0
compressed = 1
inner = 0x7f39ac0660f0
cluster = 0
Traceback (most recent call last):
File "<string>", line 54, in <module>
netgen.libngpy._meshing.NgException: PardisoInverse: Setup and Factorization failed.
The error seems to be related to occ and Pardiso. For comparison:
- If we switch in some other python script to the PARDISO solver we observe the same error.
- If we run “python3 navierstokes.py” the same computation is completed successfully.
- If we use a different solver we can run “netgen navierstokes.py” successfully.
- If we build without occ, we can run both “netgen navierstokes.py” and “python3 navierstokes.py” successfully.
Some details of the installation in our cluster:
- Debian 11 (bullseye)
- mkl from non-free Debian packages “intel-mkl” etc
- occ from Debian packages “libocct-data-exchange-dev libocct-draw-dev occt-misc libxi-dev libxi6”
- my version: [color=#000000]NETGEN-6.2.2301-41-ga0b9dca2, [/color][color=#000000]but the colleagues may use more recent checkouts.[/color]
- cmake call without occ:
cmake -DUSE_MPI=ON -DUSE_MKL=ON -DMKL_INCLUDE_DIR=/usr/include/mkl/ -DCMAKE_INSTALL_PREFIX=...[/code]
[*]cmake call with occ:
[code]cmake -DUSE_OCC=ON -DUSE_MPI=ON -DUSE_MKL=ON -DMKL_INCLUDE_DIR=/usr/include/mkl/ -DCMAKE_INSTALL_PREFIX=...
I did not notice any obviously relevant differences in the two versions of the file: CMakeCache.txt.
I did not notice any obviously relevant differences comparing the linking commands in the output of make in some verbose mode (make VERBOSE=1) for the two versions.
Do you have some idea/any advice for us how to fix the problem?
Best regards,
Guenther