Identify what's causing segmentation fault in Yambo
Jump to navigation
Jump to search
There may be different reasons why the Yambo code generates segmentation faults in a run.
To help Yambo developers understand where the problem lies and help you, please follow the steps below.
If one of the step solves your problem and please report the result in the forum.
Rule out possible causes of the segmentation fault:
- GPU: recompile without GPU support, remove the
--enable-cuda
flag. If this solve the problem report the bug in forum GPU section Yambo on GPU machines. - OPEN-MP: compile and run Yambo without open-mp support, no
--enable-open-mp
flag in the configure andOMP_NUM_THREADS="1"
. - Lapack/Blas: use internal Lapack/Blas. Reconfigure Yambo with the flag
--enable-int-linalg
, recompile and run our job again. - FFT: compile Yambo with internal FFT libraries
--enable-internal-fftsg
. - Scalapack: compile without Scalpack, unset the flag
--with-scalapack-libs
. - Parallelism
- Change the number of processors
- Use automatic parallelization, unset all parallel variable in input
- Run in serial
- Optimization: use a lower optimization level for example -O1 or -O0, by doing
./configure FCFLAGS="-O0" F77FLAGS="-O1"
- Compilers: change C/Fortran compiler if it is possible, move form intel fortran to gfortran or vice-versa.
In order to set compilers in the configure use./configure FC=ifort F77=ifort CC=icc
for Intel and./configure FC=gfortran F77=gfortran CC=gcc
for gfortran.
If no one of the previous steps solved your problem, contact us again in the forum.
If you want you can try to debug Yambo and identity the origin of segmentation fault following the steps below. This will help developers to find a solution to the problem more quickly:
Debugging the segmentation fault:
- Checking options: compile Yambo with the compiler checking options and run again your simulation, report the result in the forum:
- for g-fortran compiler
./configure FCFLAGS="-O1 -g -fcheck=all" UFLAGS="-O0 -g -fcheck=all" FFLAGS="-O1 -g -fcheck=all" --enable-keep-src"
- for intel fortran
./configure FCFLAGS="-O1 -g -CB -CA -debug" UFLAGS="-O0 -g -CB -CA -debug" FFLAGS="-O1 -g -CB -CA -debug" --enable-keep-src"
- for g-fortran compiler
- Use a debugger: Compile with debugging options,
-O1 -g
for gfortran-O1 -g -debug
for ifortran, plus the--enable-keep-src
flag, then execute your job in a debugger for examplegdb --args yambo -F yambo_input.in
. It can work also in parallel see here and here - Memory leaks: [only for experts] compile Yambo with debugging options then run your job with valgrind:
valgrind --tool=memcheck --leak-check=summary ./yambo