the intel compiler is notorious for doing segfaults.
Have you tried:
$ ulimit -s unlimited
That might cure the problem.
Regards
Jörg
--
*************************************************************
Jörg Saßmannshausen
University College London
Department of Chemistry
Gordon Street
London
WC1H 0AJ
email: j.sassma...@ucl.ac.uk
web: http://sassy.formativ.net
Please avoid sending me Word or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
did you use that before you started a run as well?
Unfortunately, it is some time that I have compiled cp2k so I don't know on
top of my head. The limit of the stack-size is usually the culprit here.
All the best from a sunny London
Jörg
email: j.sassma...@ucl.ac.uk
Correct me if I'm wrong, but as i can see you are trying to build CP2K
for SKIF `Chebyshev`. If so, you can try this (working) arch file for
Chebyshev (see below). Also be sure to switch to intel's compiler
using command:
mpi-selector --set intel_mpi_intel64-4.0.0.025
and run your task with `-as intel` option:
mpirun -as intel -blah -blah blah
Best regards,
Peter
--
# Chebyshev ARCH file
MKL_ROOT = /opt/intel/mkl/10.2.4.032
MKL_LIB = $(MKL_ROOT)/lib/em64t
MKL_INCLUDE = $(MKL_ROOT)/include
CC = cc
CPP =
FC = mpif90
LD = mpif90
AR = ar -r
DFLAGS = -D__INTEL -D__FFTSG -D__FFTMKL -D__parallel -D__BLACS
-D__SCALAPACK -D__HAS_NO_ISO_C_BINDING
CPPFLAGS = -traditional -C $(DFLAGS) -I$(MKL_INCLUDE)/include
FCFLAGS = -fc=ifort $(DFLAGS) -I$(MKL_INCLUDE) -O2 -xHost
-heap-arrays 64 -fpp -free
LDFLAGS = $(FCFLAGS) -L$(MKL_LIB)
LIBS = -Wl,--start-group \
$(MKL_LIB)/libmkl_scalapack_lp64.a \
$(MKL_LIB)/libmkl_blacs_intelmpi_lp64.a \
$(MKL_LIB)/libmkl_intel_lp64.a \
$(MKL_LIB)/libmkl_sequential.a \
$(MKL_LIB)/libmkl_core.a \
-static-mpi \
-Wl,--end-group
OBJECTS_ARCHITECTURE = machine_intel.o
# End of Chebyshev ARCH file
> --
> You received this message because you are subscribed to the Google Groups "cp2k" group.
> To post to this group, send email to cp...@googlegroups.com.
> To unsubscribe from this group, send email to cp2k+uns...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/cp2k?hl=en.
>
>
Also you can try a working binary, that i use for calculations (CP2K
version 2.2.134 (Development Version)). Copy it from
/home/mamonov/cp2k/cp2k/exe/SKIF-intel/cp2k.impi being on a cluster
frontend node.
Peter