VASP 5.2.12 segementation fault

Problems running VASP: crashes, internal errors, "wrong" results.


Moderators: Global Moderator, Moderator

Post Reply
Message
Author
yqin
Newbie
Newbie
Posts: 1
Joined: Fri Jul 20, 2012 1:52 am

VASP 5.2.12 segementation fault

#1 Post by yqin » Fri Jul 20, 2012 8:06 pm

Hi, we recently notice serious memory corruption when using VASP 5.2.12 on a certain type of model. After a lot of debugging we found the offending portion of code is in "symmetry.F" subroutine RHOSYM() and consequent RHOSYG(). The following code snippet looks very problematic:

Code: Select all

?529???????N?=GRIDC%NGX_rd*GRIDC%NGY*GRIDC%NGZ_rd
?530???????NP=GRIDC%NGX*GRIDC%NGY*GRIDC%NGZ
...
?554??????????ALLOCATE(CWORK(N),CWORK2(N),WORK(NP))
...
?558??????????CALL?RHOSYG(CWORK2,CWORK,GRIDC%NGX,GRIDC%NGX,GRIDC%NGY,GRIDC%NGY,&
?559????????????????GRIDC%NGZ,GRIDC%NGZ,PTRANS,NIOND,MAGROT,ISP,WORK)
...
However according to the definition of subroutine RHOSYG():

Code: Select all

?639???????SUBROUTINE?RHOSYG(RHOG,RHOGIN,?&
?640??????&??????????????ID1,NR1,ID2,NR2,ID3,NR3,PTRANS,NIOND,MAGROT,ISP,DONE)
So ID[123] and NR[123] would be identical based on the arguments passed in. But now the problem comes:

Code: Select all

?645???????COMPLEX(q)?RHOG(ID1*ID2*ID3),RHOGIN(ID1*ID2*ID3)
So if "-DNGXhalf" or "-DNGZhalf" or both are defined during compilation time, this could cause serious memory violation because NG[XZ]_rd could be only NG[XZ]/2+1. I've tried to patch both functions but since this is the first time that I work with this code internal I don't think I fully understand all the logic behind it. I'm also suspecting some other mixed usage between ID[123] and NR[123] in RHOSYG() subroutine which caused my patch to be not working properly. So any suggestion on how to fix this problem?

Thanks!
Last edited by yqin on Fri Jul 20, 2012 8:06 pm, edited 1 time in total.

admin
Administrator
Administrator
Posts: 2921
Joined: Tue Aug 03, 2004 8:18 am
License Nr.: 458

VASP 5.2.12 segementation fault

#2 Post by admin » Thu Aug 30, 2012 3:10 pm

- please give some information about the compiler and the OS you use.
please note that you can define EITHER -DNGXhalf OR -DNGZhalf, or none of them (see manual) , but never both, so there should be no conflicts on the FFT-grids once you have chosen the parameter.
Last edited by admin on Thu Aug 30, 2012 3:10 pm, edited 1 time in total.

Post Reply