<div dir="ltr">Setting the values for libint_max_am and libderiv_max_am1 to what they 
are in libint configuration didn't help, but removing the lines 
completely did. So, this went through with no errors for serial (sopt): <br><br>CC         = gcc<br>CPP        =<br>FC         = gfortran<br>LD         = gfortran<br>AR         = ar -r<br>DFLAGS     = -D__ACML -D__FFTW3 -D__LIBINT -D__LIBXC2<br>CPPFLAGS   = $$FFTW_INCLUDE $$ACML_INCLUDE $$LIBXC_INCLUDE $$LIBINT_INCLUDE<br>FCFLAGS    = $(DFLAGS) -O2 --fast-math -ffree-form -ffree-line-length-none \<br>         -ftree-vectorize -funroll-loops -mtune=native\<br>         $$FFTW_INCLUDE $$ACML_INCLUDE $$LIBXC_INCLUDE $$LIBINT_INCLUDE<br>LDFLAGS    = $(FCFLAGS) $$FFTW_LDFLAGS $$ACML_LDFLAGS $$LIBINT_LDFLAGS $$LIBXC_LDFLAGS <br>LIBS       = -lacml -lfftw3 -lxcf90 -lxc -lderiv -lint -lm -ldl<br><br><br>Thanks a lot! <br><br>Now time to see if removing those lines is enough to get it to work for openmp, etc. too :) <br><br><br>-Birgitte<br><br>On Tuesday, June 9, 2015 at 3:06:54 PM UTC+2, bbr...@gmail.com wrote:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir="ltr">I didn't build libint (this is not my personal computer, but a cluster). However, I checked in the config file for libint here, and it looks as if it is configured with libint_max_am=4 and libderiv_max_am1=3<br><br>So I think you are right and that may very well be the reason for the errors! I will try to build a new version of CP2K with those values. <br><br>The stack size limit is set to unlimited, so that should not be the problem.  <br><br>Thanks! I will tell you how it goes when I have tried with the new values for libint_max_am and libderiv_max_am1 <br><br>-Birgitte<br><br>On Tuesday, June 9, 2015 at 2:42:48 PM UTC+2, IBethune wrote:<blockquote class="gmail_quote" style="margin:0;margin-left:0.8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Birgitte,
<br>
<br>Looking at all those test failures, they are all failing in or around the start of the HFX calculation.  One thing that could cause such a failure is if that you have defined:
<br>
<br>> -D__LIBINT_MAX_AM=7 -D__LIBDERIV_MAX_AM1=6
<br>
<br>Do these correspond to the values you used when configuring libint?
<br>
<br>--with-libint-max-am=7 --with-libderiv-max-am1=6 ??
<br>
<br>Another possibility is that your system has a very small stack size limit.  Run ‘ulimit -s’ to see what it is, and try running again after setting 'ulimit -s unlimited'
<br>
<br>Apart from that, I would suggest running one of the tests with 'ulimit -c unlimited’ to get a core file, then open it with a debugger (e.g. ‘gdb /path/to/my/cp2k.sopt /path/to/my/core.file' and run ‘bt’ to identify the location of the crash.  If you post here we may be able to suggest a fix.
<br>
<br>- Iain
<br>
<br>--
<br>
<br>Iain Bethune
<br>Project Manager, EPCC
<br>
<br>Email: <a rel="nofollow">ibe...@epcc.ed.ac.uk</a>
<br>Twitter: @IainBethune
<br>Web: <a href="http://www2.epcc.ed.ac.uk/~ibethuneTel/Fax" rel="nofollow" target="_blank" onmousedown="this.href='http://www.google.com/url?q\75http%3A%2F%2Fwww2.epcc.ed.ac.uk%2F~ibethuneTel%2FFax\46sa\75D\46sntz\0751\46usg\75AFQjCNFFX2aa_LeyI8qZrXJ4SWGN4STQIA';return true;" onclick="this.href='http://www.google.com/url?q\75http%3A%2F%2Fwww2.epcc.ed.ac.uk%2F~ibethuneTel%2FFax\46sa\75D\46sntz\0751\46usg\75AFQjCNFFX2aa_LeyI8qZrXJ4SWGN4STQIA';return true;">http://www2.epcc.ed.ac.uk/~<wbr>ibethune
<br>Tel/Fax</a>: +44 (0)131 650 5201/6555
<br>Mob: +44 (0)7598317015
<br>Addr: 2404 JCMB, The King's Buildings, Peter Guthrie Tait Road, Edinburgh, EH9 3FD
<br>
<br>> On 9 Jun 2015, at 12:44, <a rel="nofollow">bbr...@gmail.com</a> wrote:
<br>> 
<br>> I am trying to compile CP2K 2.6 (sopt, ssmp, popt, psmp) on a Linux Ubuntu 12.04 system. 
<br>> 
<br>> I tried compiling with Intel/MKL, but get runtime fail for all regtests. I then tried GCC/MKL, and most tests again failed.
<br>> 
<br>> I am currently compiling with: 
<br>> 
<br>> GCC 4.9.1
<br>> FFTW 3.3.4
<br>> Libint 1.1.4
<br>> Libxc 2.2.2
<br>> ACML 5.3.1
<br>> 
<br>> This works best of the combinations I have tried until now, but I still get about 5% runtime failure on the regtests for serial CP2K. The OpenMP version hangs on Ar-ref-3.inp and never goes further. 
<br>> 
<br>> Linux-x86-64-gfortran.sopt: 
<br>> 
<br>> CC         = gcc
<br>> CPP        =
<br>> FC         = gfortran
<br>> LD         = gfortran
<br>> AR         = ar -r
<br>> DFLAGS     = -D__ACML -D__FFTW3 -D__LIBINT -D__LIBXC2\
<br>>              -D__LIBINT_MAX_AM=7 -D__LIBDERIV_MAX_AM1=6 -D__MAX_CONTR=4
<br>> CPPFLAGS   = $$FFTW_INCLUDE $$ACML_INCLUDE $$LIBXC_INCLUDE $$LIBINT_INCLUDE
<br>> FCFLAGS    = $(DFLAGS) -O2 --fast-math -ffree-form -ffree-line-length-none \
<br>>          -ftree-vectorize -funroll-loops -mtune=native\
<br>>          $$FFTW_INCLUDE $$ACML_INCLUDE $$LIBXC_INCLUDE $$LIBINT_INCLUDE
<br>> LDFLAGS    = $(FCFLAGS) $$FFTW_LDFLAGS $$ACML_LDFLAGS $$LIBINT_LDFLAGS $$LIBXC_LDFLAGS 
<br>> LIBS       = -lacml -lfftw3 -lxcf90 -lxc -lderiv -lint -lm -ldl
<br>> 
<br>> 
<br>> 
<br>> ------------------------------<wbr>------------------------------<wbr>-------
<br>> Linux-x86-64-gfortran.ssmp: 
<br>> 
<br>> CC         = gcc
<br>> CPP        =
<br>> FC         = gfortran
<br>> LD         = gfortran
<br>> AR         = ar -r
<br>> DFLAGS     = -D__ACML -D__FFTW3 -D__LIBINT -D__LIBXC2\
<br>>              -D__LIBINT_MAX_AM=7 -D__LIBDERIV_MAX_AM1=6 -D__MAX_CONTR=4
<br>> CPPFLAGS   = $$FFTW_INCLUDE $$ACML_INCLUDE $$LIBXC_INCLUDE $$LIBINT_INCLUDE
<br>> FCFLAGS    = $(DFLAGS) -O0 -g -ffree-form -ffree-line-length-none\
<br>>              -fopenmp -ftree-vectorize -funroll-loops\
<br>>              -mtune=native\
<br>>              $$FFTW_INCLUDE $$ACML_INCLUDE $$LIBXC_INCLUDE $$LIBINT_INCLUDE
<br>> LDFLAGS    = $(FCFLAGS) $$FFTW_LDFLAGS $$ACML_LDFLAGS $$LIBINT_LDFLAGS $$LIBXC_LDFLAGS -static-libgfortran
<br>> LIBS       = -lacml -lfftw3 -lfftw3_threads -lxcf90 -lxc -lderiv -lint -lm -ldl 
<br>> 
<br>> 
<br>> I have attached the error messages and the list of status of regtest for sopt. 
<br>> 
<br>> Any suggestions to what the problem might be? 
<br>> 
<br>> Thank you! 
<br>> 
<br>> -Birgitte Brydsö
<br>> 
<br>> 
<br>> 
<br>> -- 
<br>> You received this message because you are subscribed to the Google Groups "cp2k" group.
<br>> To unsubscribe from this group and stop receiving emails from it, send an email to <a rel="nofollow">cp2k+...@googlegroups.com</a>.
<br>> To post to this group, send email to <a rel="nofollow">cp...@googlegroups.com</a>.
<br>> Visit this group at <a href="http://groups.google.com/group/cp2k" rel="nofollow" target="_blank" onmousedown="this.href='http://groups.google.com/group/cp2k';return true;" onclick="this.href='http://groups.google.com/group/cp2k';return true;">http://groups.google.com/<wbr>group/cp2k</a>.
<br>> For more options, visit <a href="https://groups.google.com/d/optout" rel="nofollow" target="_blank" onmousedown="this.href='https://groups.google.com/d/optout';return true;" onclick="this.href='https://groups.google.com/d/optout';return true;">https://groups.google.com/d/<wbr>optout</a>.
<br>> <output_regtest_acml_<wbr>gfortran491.txt><error_<wbr>summary.txt>
<br>
<br>
<br>-- 
<br>The University of Edinburgh is a charitable body, registered in
<br>Scotland, with registration number SC005336.
<br>
<br></blockquote></div></blockquote></div>