Dear all,<div><br></div><div>   I would like to confirm that the first solution posted by Dr. Gavin Abo works !! I followed section 11.1.1 of the Users Guide (ifort case) and the  SCF cycle with mBJ is running without problems.</div>
<div>   There is only a little misprint in the WIEN2k_12 Users Guide, it is &quot;add -lfftw2xf_intel&quot;... instead of &quot;add -lfftw2xf&quot;...  (at least for<span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"> ifort 2011.3.174).</span></div>
<div><font color="#222222" face="arial, sans-serif">   Thank you very much for the help,</font></div><div><font color="#222222" face="arial, sans-serif">                            Luis Ogando</font></div><div><font color="#222222" face="arial, sans-serif"><br>
</font></div><div><font color="#222222" face="arial, sans-serif"><br></font></div><div><font color="#222222" face="arial, sans-serif"><br></font><br><div class="gmail_quote">2012/8/24 Fecher, Gerhard <span dir="ltr">&lt;<a href="mailto:fecher@uni-mainz.de" target="_blank">fecher@uni-mainz.de</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Gavin is right, COMPLEX(8) is the same as  COMPLEX*16<br>
COMPLEX(8) is also the same as DOUBLE COMPLEX (16 bytes, (128 bits))<br>
and fits to<br>
REAL(8)  (8 bytes, (64 bits))<br>
as it consists of two real 8 bytes numbers<br>
<br>
<br>
Ciao<br>
Gerhard<br>
<br>
====================================<br>
Dr. Gerhard H. Fecher<br>
Institut of Inorganic and Analytical Chemistry<br>
Johannes Gutenberg - University<br>
55099 Mainz<br>
________________________________________<br>
Von: <a href="mailto:wien-bounces@zeus.theochem.tuwien.ac.at">wien-bounces@zeus.theochem.tuwien.ac.at</a> [<a href="mailto:wien-bounces@zeus.theochem.tuwien.ac.at">wien-bounces@zeus.theochem.tuwien.ac.at</a>]&amp;quot; im Auftrag von &amp;quot;Gavin Abo [<a href="mailto:gsabo@crimson.ua.edu">gsabo@crimson.ua.edu</a>]<br>

Gesendet: Freitag, 24. August 2012 02:00<br>
An: A Mailing list for WIEN2k users<br>
Betreff: Re: [Wien] Problems in the 1st step of the SCF cycle of mBj<br>
<div class="im"><br>
I believe &quot;complex(kind=8)&quot; is the same as &quot;complex*16&quot;, just a different notation for it.<br>
<br>
If the suggested possible fix works, an if statement in vresp.F to use the lines like &quot;DWORK(:)&quot; for fftw2/3 and &quot;DWORK(*)&quot; for fftpack would be needed.  Else, probably the original fft_modules.F and vresp.F would have to be used with some type of changes in fftpack_helpers.f instead.<br>

<br>
On 8/23/2012 5:24 PM, Laurence Marks wrote:<br>
<br>
Can you change everything to complex*16 ? It makes sense to do everything with double precision, I would be concerned with the accuracy of complex*8 as well as mixing precisions.<br>
<br>
---------------------------<br>
Professor Laurence Marks<br>
Department of Materials Science and Engineering<br>
Northwestern University<br>
</div><a href="http://www.numis.northwestern.edu" target="_blank">www.numis.northwestern.edu</a>&lt;<a href="http://www.numis.northwestern.edu" target="_blank">http://www.numis.northwestern.edu</a>&gt; <a href="tel:1-847-491-3996" value="+18474913996">1-847-491-3996</a><br>

<div class="im">&quot;Research is to see what everybody else has seen, and to think what nobody else has thought&quot;<br>
Albert Szent-Gyorgi<br>
<br>
</div><div><div class="h5">On Aug 23, 2012 6:19 PM, &quot;Gavin Abo&quot; &lt;<a href="mailto:gsabo@crimson.ua.edu">gsabo@crimson.ua.edu</a>&lt;mailto:<a href="mailto:gsabo@crimson.ua.edu">gsabo@crimson.ua.edu</a>&gt;&gt; wrote:<br>

The situational problem with the fftpack routine might be due to some inconsistency in the array usage.  Maybe Prof. Blaha can provide or confirm whether the fix below works properly.<br>
<br>
Lines 392-294 in SRC_lapw0/fft_modules.F:<br>
<br>
    real(kind=8) :: DWORK(:)<br>
    complex(kind=8) :: CWORK(:)<br>
    complex(kind=8) :: C(LDC1,LDC2,N3,2)<br>
<br>
Lines 21-22 in SRC_lapw0/vresp.F:<br>
<br>
    DOUBLE PRECISION   DWORK(:)<br>
    COMPLEX*16               CWORK(:)<br>
<br>
It runs without error with the following changes.<br>
<br>
Lines 392-293 in SRC_lapw0/fft_modules.F:<br>
<br>
    real(kind=8)         DWORK(*)<br>
    complex(kind=8) CWORK(*)<br>
<br>
  &quot;complex(kind=8) C(LDC1,LDC2,N3,2)&quot; needed too??<br>
<br>
Lines 21-22 in SRC_lapw0/vresp.F:<br>
<br>
    DOUBLE PRECISION   DWORK(*)<br>
    COMPLEX*16               CWORK(*)<br>
<br>
as the subroutine in SRC_lapw0/fftpack_helpers.f has &quot;DWORK(*)&quot;<br>
<br>
On 8/23/2012 12:58 PM, Gavin Abo wrote:<br>
I was able to reproduce the error with your files when the fftpack routine is used in Wien2k 12.1.  Ran a couple cycles, and the error did not appear when fftw3 was used instead.  So a possible solution may be to use the fftw3 library.<br>

<br>
The fftw3 may be faster than the fftpack, so you probably want to use it anyway.  It should be easy to use the fftw3 on Debian. fftw3 might already be installed or I believe you can install it with:<br>
<br>
apt-get install libfftw3-dev<br>
<br>
Open the Makefile in a text editor:<br>
<br>
vi $WIENROOT/SRC_lapw0/Makefile<br>
<br>
Edit and save settings to use for sequential (non-mpi):<br>
<br>
FOPT = -FR -mp1 -w -prec_div -pc80 -pad -ip -DINTEL_VML -DFFTW3 -traceback<br>
R_LIBS = -lmkl_lapack95_lp64 -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -openmp -lpthread -lfftw3<br>
<br>
In $WIENROOT/SRC_lapw0:<br>
<br>
make<br>
cp lapw0 ..<br>
<br>
As described in section 11.1.1 of the Wien2k 12.1 userguide, the same can be done with lapw2.  Instructions for using the possible faster mkl-fftw3 for sequential (non-mpi) instead of the above described fftw3 from a Debian repository is also given.<br>

<br>
On 8/23/2012 8:06 AM, Luis Carlos Ogando Dacal wrote:<br>
Dear Wien2k users and developers,<br>
<br>
   I would like to report the same problem sent to the list by Dr. Eitel Peltzer.<br>
   I am running WIEN2k_12.1 on a DELL Precision workstation with two QuadCore Xeon processors and Debian Linux. It was compiled using ifort 2011.3.174, icc and MKL. The compilation options were:<br>
<br>
 O   Compiler options:        -FR -mp1 -w -prec_div -pc80 -pad -ip -DINTEL_VML -traceback<br>
 L   Linker Flags:            $(FOPT) -L/opt/intel/composerxe-2011.3.174/mkl/lib/intel64 -pthread<br>
 P   Preprocessor flags       &#39;-DParallel&#39;<br>
 R   R_LIB (LAPACK+BLAS):     -lmkl_lapack95_lp64 -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -openmp -lpthread<br>
<br>
   I have followed section 4.5.9 of the Users Guide and everything is 0K until the change of indxc to 28 in case.in0 and 50 in case.in0_grr. After this, the SCF cycle stops in the second lapw0 run with the following error message:<br>

<br>
hup: Command not found.<br>
 LAPW0 END<br>
forrtl: severe (174): SIGSEGV, segmentation fault occurred<br>
Image              PC                Routine            Line        Source<br>
lapw0              000000000040505E  c3fft_1_                  119  fftpack_helpers.f<br>
lapw0              0000000000412D5B  fftpack_mp_c3fft_         397  fft_modules.F<br>
lapw0              000000000047F4EC  vresp_                    106  vresp.F<br>
lapw0              0000000000495769  xcpot3_                   147  xcpot3.F<br>
lapw0              000000000045C064  MAIN__                   1935  lapw0.F<br>
lapw0              0000000000403D6C  Unknown               Unknown  Unknown<br>
libc.so.6          00002B1096C82C8D  Unknown               Unknown  Unknown<br>
lapw0              0000000000403C69  Unknown               Unknown  Unknown<br>
<br>
&gt;   stop error<br>
<br>
<br>
   I am sending the case.struct and case.in0 files as requested by Prof. Blaha. I have also saved the previous PBE calculation and I can send it if necessary (8.5 MB).<br>
   Thanks in advance,<br>
                          Luis Ogando<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
Wien mailing list<br>
</div></div><a href="mailto:Wien@zeus.theochem.tuwien.ac.at">Wien@zeus.theochem.tuwien.ac.at</a>&lt;mailto:<a href="mailto:Wien@zeus.theochem.tuwien.ac.at">Wien@zeus.theochem.tuwien.ac.at</a>&gt;<br>
<a href="http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien" target="_blank">http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien</a><br>
<div class="HOEnZb"><div class="h5"><br>
<br>
_______________________________________________<br>
Wien mailing list<br>
<a href="mailto:Wien@zeus.theochem.tuwien.ac.at">Wien@zeus.theochem.tuwien.ac.at</a><br>
<a href="http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien" target="_blank">http://zeus.theochem.tuwien.ac.at/mailman/listinfo/wien</a><br>
</div></div></blockquote></div><br></div>