You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you can, try out either a different ifort compiler version or modify the compilation flags a bit:
for the kdtree search routine, compiling with intel ifort version 18.0.1/19.1.0 and optimizations like -xHost -O2 or -xHost -O3 flags can lead to issues with a deallocate() statement:
*** Error in `./bin/xcreate_cross_section': double free or corruption (!prev): 0x0000000001885e80 ***
This might be due to a more aggressive optimization which leads to a change of the instruction set and the memory being freed twice. A way to avoid this is by removing -xHost from FLAGS_CHECK = .. in Makefile, or changing the compiler version.
Hello,
I am trying to run xcreate_cross_section code with:
But I am getting this error:
Can you help me with this problem?
Bests.
The text was updated successfully, but these errors were encountered: