Identify what's causing segmentation fault in Yambo: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
There may be different reasons why the Yambo code generates segmentation faults in a run.<br> | There may be different reasons why the Yambo code generates segmentation faults in a run.<br> | ||
To help Yambo developers understand where the problem lies and help you, please follow the steps below | 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 [http://www.yambo-code.org/forum/ forum]. | |||
'''Rule out possible causes of the segmentation fault:''' | '''Rule out possible causes of the segmentation fault:''' | ||
# '''GPU''' | # '''GPU''': are you running Yambo with GPU support? In this case try to recompile without <code>--enable-cuda</code> flag. If this solve the problem report your bug in the section [http://www.yambo-code.org/forum/viewforum.php?f=38 Yambo on GPU machines] otherwise to the next step. | ||
# '''OPEN-MP''' | # '''OPEN-MP''': Try to compile and run without open-mp support, no <code>--enable-open-mp</code> flag in compilation and <code>OMP_NUM_THREADS="1"</code>. | ||
# '''Internal Lapack/Blas''' | # '''Internal Lapack/Blas''': try to compile with internal Lapack/Blas libraries <code>--enable-int-linalg</code> in the configure. | ||
# '''Internal FFT''' | # '''Internal FFT''': try to compile with internal FFT libraries <code>--enable-internal-fftsg</code> in the configure |
Revision as of 17:13, 10 January 2021
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: are you running Yambo with GPU support? In this case try to recompile without
--enable-cuda
flag. If this solve the problem report your bug in the section Yambo on GPU machines otherwise to the next step. - OPEN-MP: Try to compile and run without open-mp support, no
--enable-open-mp
flag in compilation andOMP_NUM_THREADS="1"
. - Internal Lapack/Blas: try to compile with internal Lapack/Blas libraries
--enable-int-linalg
in the configure. - Internal FFT: try to compile with internal FFT libraries
--enable-internal-fftsg
in the configure