Hello,
I recently installed Vasp6.3.2 using intel/19.0.3.199 and impi/2019.3.199. PFA the makefile.include
The following tests failed, please check the output file manually:
bulk_InP_SOC_DFT_ISYM=2 bulk_InP_SOC_DFT_ISYM=2_RPR bulk_InP_SOC_DFT_ISYM=3 bulk_InP_SOC_DFT_ISYM=3_RPR bulk_InP_SOC_G0W0_sym bulk_InP_SOC_G0W0_sym_RPR bulk_InP_SOC_PBE0_nosym bulk_InP_SOC_PBE0_sym bulk_InP_SOC_PBE0_sym_RPR NiOsLDAU=2_x NiOsLDAU=2_x_RPR NiOsLDAU=2_y NiOsLDAU=2_y_RPR NiOsLDAU=2_z NiOsLDAU=2_z_RPR
All the failed tests have segmentation fault error.
I checked that ulimit -s is set to unlimited.
Please let me know if I missed anything. Any help will be appreciated.
Thank you,
Kaustubh
Segmentation Error In Validation Test on Vasp6.3.2
Moderators: Global Moderator, Moderator
-
- Newbie
- Posts: 5
- Joined: Sun Nov 17, 2019 6:01 pm
Segmentation Error In Validation Test on Vasp6.3.2
You do not have the required permissions to view the files attached to this post.
-
- Global Moderator
- Posts: 460
- Joined: Mon Nov 04, 2019 12:44 pm
Re: Segmentation Error In Validation Test on Vasp6.3.2
It could be a lot of things and it's like fishing in the dark.
But let's first rule out the most common problems:
1) Scalapack: try to compile with and without -DscaLAPACK and run the testsuite
2) Shared memory MPI: compile with and without -Duse_shmem and run the testsuite
But let's first rule out the most common problems:
1) Scalapack: try to compile with and without -DscaLAPACK and run the testsuite
2) Shared memory MPI: compile with and without -Duse_shmem and run the testsuite
-
- Newbie
- Posts: 5
- Joined: Sun Nov 17, 2019 6:01 pm
Re: Segmentation Error In Validation Test on Vasp6.3.2
Thank you for the help. I was able to resolve the issue by changing the executable. I had to add "--mpi=pmi2" tag which turns out is important for Intel impi.
export VASP_TESTSUITE_EXE_NCL="srun -n 4 --mpi=pmi2 /root/bin/vasp_ncl"
Thank you and regards,
Kaustubh Sawant
export VASP_TESTSUITE_EXE_NCL="srun -n 4 --mpi=pmi2 /root/bin/vasp_ncl"
Thank you and regards,
Kaustubh Sawant
-
- Global Moderator
- Posts: 460
- Joined: Mon Nov 04, 2019 12:44 pm
Re: Segmentation Error In Validation Test on Vasp6.3.2
Thank you very much for posting your solution!