Page 1 of 1

Use of COMPLEX data and use of BLAS

Posted: Mon Dec 04, 2017 4:49 pm
by jzwanzig
Hi everyone,

I'm back to development. Currently I'm putting the finishing touches on implementing nuclear magnetic dipoles--they are input with nucdipmom(3,natom) input variable, and then the Hamiltonian is modified to include them (in PAW, both on-site terms and the bare A.p term). Two questions arise:

1) Our coding rules forbid use of COMPLEX data types--why? Is this rule still necessary?

2) Our coding rules also discourage the use of BLAS, seemingly more for readability than anything else. But the A.p nuclear dipole Hamiltonian in reciprocal space is an npw_k x npw_k matrix at each k point (Hermitian, so storable as one triangle only) and its application to the wavefunction at k is tailor-made for a call to ZHPMV, which with MKL is much faster than any other approach (I've coded about 4 different methods).

so--overall, can I use COMPLEX and BLAS in this case? Or, if not, why not?

thanks,
Joe

Re: Use of COMPLEX data and use of BLAS

Posted: Wed Dec 20, 2017 11:03 am
by ebousquet
Hi Joe,
I started to use complex in the following routine:
56_xc/dfpt_mkvxc_noncoll.F90
which sounds working. However, I didn't make an automatic test yet so I don't know the transferability of it. Should do this automatic test this week...
I think we should go toward complex in the future because it will help us in very complex cases (the other complex ;-) )...
Cheers,
Eric