2019-01-25 11:39:31 +01:00
|
|
|
use map_module
|
|
|
|
|
|
|
|
!! MO Map
|
|
|
|
!! ======
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ type(map_type), mo_integrals_map ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! MO integrals
|
|
|
|
END_DOC
|
|
|
|
integer(key_kind) :: key_max
|
|
|
|
integer(map_size_kind) :: sze
|
|
|
|
call two_e_integrals_index(mo_num,mo_num,mo_num,mo_num,key_max)
|
|
|
|
sze = key_max
|
|
|
|
call map_init(mo_integrals_map,sze)
|
|
|
|
print*, 'MO map initialized: ', sze
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
subroutine insert_into_mo_integrals_map(n_integrals, &
|
|
|
|
buffer_i, buffer_values, thr)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
|
|
|
|
BEGIN_DOC
|
|
|
|
! Create new entry into MO map, or accumulate in an existing entry
|
|
|
|
END_DOC
|
|
|
|
|
|
|
|
integer, intent(in) :: n_integrals
|
|
|
|
integer(key_kind), intent(inout) :: buffer_i(n_integrals)
|
|
|
|
real(integral_kind), intent(inout) :: buffer_values(n_integrals)
|
|
|
|
real(integral_kind), intent(in) :: thr
|
|
|
|
call map_update(mo_integrals_map, buffer_i, buffer_values, n_integrals, thr)
|
|
|
|
end
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ integer*4, mo_integrals_cache_min ]
|
|
|
|
&BEGIN_PROVIDER [ integer*4, mo_integrals_cache_max ]
|
|
|
|
&BEGIN_PROVIDER [ integer*8, mo_integrals_cache_min_8 ]
|
|
|
|
&BEGIN_PROVIDER [ integer*8, mo_integrals_cache_max_8 ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Min and max values of the MOs for which the integrals are in the cache
|
|
|
|
END_DOC
|
|
|
|
mo_integrals_cache_min_8 = max(1_8,elec_alpha_num - 63_8)
|
|
|
|
mo_integrals_cache_max_8 = min(int(mo_num,8),mo_integrals_cache_min_8+127_8)
|
|
|
|
mo_integrals_cache_min = max(1,elec_alpha_num - 63)
|
|
|
|
mo_integrals_cache_max = min(mo_num,mo_integrals_cache_min+127)
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
BEGIN_PROVIDER [ double precision, mo_integrals_cache, (0_8:128_8*128_8*128_8*128_8) ]
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Cache of MO integrals for fast access
|
|
|
|
END_DOC
|
|
|
|
PROVIDE mo_two_e_integrals_in_map
|
|
|
|
integer*8 :: i,j,k,l
|
|
|
|
integer*4 :: i4,j4,k4,l4
|
|
|
|
integer*8 :: ii
|
|
|
|
integer(key_kind) :: idx
|
|
|
|
real(integral_kind) :: integral
|
|
|
|
FREE ao_integrals_cache
|
|
|
|
!$OMP PARALLEL DO PRIVATE (i,j,k,l,i4,j4,k4,l4,idx,ii,integral)
|
|
|
|
do l=mo_integrals_cache_min_8,mo_integrals_cache_max_8
|
|
|
|
l4 = int(l,4)
|
|
|
|
do k=mo_integrals_cache_min_8,mo_integrals_cache_max_8
|
|
|
|
k4 = int(k,4)
|
|
|
|
do j=mo_integrals_cache_min_8,mo_integrals_cache_max_8
|
|
|
|
j4 = int(j,4)
|
|
|
|
do i=mo_integrals_cache_min_8,mo_integrals_cache_max_8
|
|
|
|
i4 = int(i,4)
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
call two_e_integrals_index(i4,j4,k4,l4,idx)
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
call map_get(mo_integrals_map,idx,integral)
|
|
|
|
ii = l-mo_integrals_cache_min_8
|
|
|
|
ii = ior( shiftl(ii,7), k-mo_integrals_cache_min_8)
|
|
|
|
ii = ior( shiftl(ii,7), j-mo_integrals_cache_min_8)
|
|
|
|
ii = ior( shiftl(ii,7), i-mo_integrals_cache_min_8)
|
|
|
|
mo_integrals_cache(ii) = integral
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
enddo
|
|
|
|
!$OMP END PARALLEL DO
|
|
|
|
|
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
|
|
|
double precision function get_two_e_integral(i,j,k,l,map)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns one integral <ij|kl> in the MO basis
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: i,j,k,l
|
|
|
|
integer(key_kind) :: idx
|
|
|
|
integer :: ii
|
|
|
|
integer*8 :: ii_8
|
|
|
|
type(map_type), intent(inout) :: map
|
|
|
|
real(integral_kind) :: tmp
|
|
|
|
PROVIDE mo_two_e_integrals_in_map mo_integrals_cache
|
2021-01-21 10:52:33 +01:00
|
|
|
if (use_banned_excitation) then
|
|
|
|
if (banned_excitation(i,k)) then
|
|
|
|
get_two_e_integral = 0.d0
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
if (banned_excitation(j,l)) then
|
|
|
|
get_two_e_integral = 0.d0
|
|
|
|
return
|
|
|
|
endif
|
2020-09-25 15:14:56 +02:00
|
|
|
endif
|
2019-01-25 11:39:31 +01:00
|
|
|
ii = l-mo_integrals_cache_min
|
|
|
|
ii = ior(ii, k-mo_integrals_cache_min)
|
|
|
|
ii = ior(ii, j-mo_integrals_cache_min)
|
|
|
|
ii = ior(ii, i-mo_integrals_cache_min)
|
|
|
|
if (iand(ii, -128) /= 0) then
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
call two_e_integrals_index(i,j,k,l,idx)
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
call map_get(map,idx,tmp)
|
|
|
|
get_two_e_integral = dble(tmp)
|
|
|
|
else
|
|
|
|
ii_8 = int(l,8)-mo_integrals_cache_min_8
|
|
|
|
ii_8 = ior( shiftl(ii_8,7), int(k,8)-mo_integrals_cache_min_8)
|
|
|
|
ii_8 = ior( shiftl(ii_8,7), int(j,8)-mo_integrals_cache_min_8)
|
|
|
|
ii_8 = ior( shiftl(ii_8,7), int(i,8)-mo_integrals_cache_min_8)
|
|
|
|
get_two_e_integral = mo_integrals_cache(ii_8)
|
|
|
|
endif
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
double precision function mo_two_e_integral(i,j,k,l)
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns one integral <ij|kl> in the MO basis
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: i,j,k,l
|
|
|
|
double precision :: get_two_e_integral
|
|
|
|
PROVIDE mo_two_e_integrals_in_map mo_integrals_cache
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
mo_two_e_integral = get_two_e_integral(i,j,k,l,mo_integrals_map)
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
subroutine get_mo_two_e_integrals(j,k,l,sze,out_val,map)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns multiple integrals <ij|kl> in the MO basis, all
|
|
|
|
! i for j,k,l fixed.
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: j,k,l, sze
|
|
|
|
double precision, intent(out) :: out_val(sze)
|
|
|
|
type(map_type), intent(inout) :: map
|
|
|
|
integer :: i
|
|
|
|
double precision, external :: get_two_e_integral
|
|
|
|
|
|
|
|
integer :: ii, ii0
|
|
|
|
integer*8 :: ii_8, ii0_8
|
|
|
|
real(integral_kind) :: tmp
|
|
|
|
integer(key_kind) :: i1, idx
|
|
|
|
integer(key_kind) :: p,q,r,s,i2
|
|
|
|
PROVIDE mo_two_e_integrals_in_map mo_integrals_cache
|
|
|
|
|
2019-10-29 12:13:14 +01:00
|
|
|
!DEBUG
|
|
|
|
! do i=1,sze
|
|
|
|
! out_val(i) = get_two_e_integral(i,j,k,l,map)
|
|
|
|
! enddo
|
|
|
|
! return
|
|
|
|
!DEBUG
|
|
|
|
|
2020-09-25 15:14:56 +02:00
|
|
|
out_val(1:sze) = 0.d0
|
|
|
|
if (banned_excitation(j,l)) then
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
ii0 = l-mo_integrals_cache_min
|
|
|
|
ii0 = ior(ii0, k-mo_integrals_cache_min)
|
|
|
|
ii0 = ior(ii0, j-mo_integrals_cache_min)
|
|
|
|
|
|
|
|
ii0_8 = int(l,8)-mo_integrals_cache_min_8
|
|
|
|
ii0_8 = ior( shiftl(ii0_8,7), int(k,8)-mo_integrals_cache_min_8)
|
|
|
|
ii0_8 = ior( shiftl(ii0_8,7), int(j,8)-mo_integrals_cache_min_8)
|
|
|
|
|
|
|
|
q = min(j,l)
|
|
|
|
s = max(j,l)
|
|
|
|
q = q+shiftr(s*s-s,1)
|
|
|
|
|
|
|
|
do i=1,sze
|
2020-09-25 15:14:56 +02:00
|
|
|
if (banned_excitation(i,k)) cycle
|
2019-01-25 11:39:31 +01:00
|
|
|
ii = ior(ii0, i-mo_integrals_cache_min)
|
|
|
|
if (iand(ii, -128) == 0) then
|
|
|
|
ii_8 = ior( shiftl(ii0_8,7), int(i,8)-mo_integrals_cache_min_8)
|
|
|
|
out_val(i) = mo_integrals_cache(ii_8)
|
|
|
|
else
|
|
|
|
p = min(i,k)
|
|
|
|
r = max(i,k)
|
|
|
|
p = p+shiftr(r*r-r,1)
|
|
|
|
i1 = min(p,q)
|
|
|
|
i2 = max(p,q)
|
|
|
|
idx = i1+shiftr(i2*i2-i2,1)
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
call map_get(map,idx,tmp)
|
|
|
|
out_val(i) = dble(tmp)
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
end
|
|
|
|
|
|
|
|
subroutine get_mo_two_e_integrals_ij(k,l,sze,out_array,map)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns multiple integrals <ij|kl> in the MO basis, all
|
|
|
|
! i(1)j(2) 1/r12 k(1)l(2)
|
|
|
|
! i, j for k,l fixed.
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: k,l, sze
|
|
|
|
double precision, intent(out) :: out_array(sze,sze)
|
|
|
|
type(map_type), intent(inout) :: map
|
2020-05-28 11:57:12 +02:00
|
|
|
integer :: j
|
2019-01-25 11:39:31 +01:00
|
|
|
real(integral_kind), allocatable :: tmp_val(:)
|
|
|
|
|
|
|
|
do j=1,sze
|
2020-05-28 11:57:12 +02:00
|
|
|
call get_mo_two_e_integrals(j,k,l,sze,out_array(1,j),map)
|
2019-01-25 11:39:31 +01:00
|
|
|
enddo
|
|
|
|
end
|
|
|
|
|
|
|
|
subroutine get_mo_two_e_integrals_i1j1(k,l,sze,out_array,map)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns multiple integrals <ik|jl> in the MO basis, all
|
|
|
|
! i(1)j(1) 1/r12 k(2)l(2)
|
|
|
|
! i, j for k,l fixed.
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: k,l, sze
|
|
|
|
double precision, intent(out) :: out_array(sze,sze)
|
|
|
|
type(map_type), intent(inout) :: map
|
2020-05-28 11:57:12 +02:00
|
|
|
integer :: j
|
2019-01-25 11:39:31 +01:00
|
|
|
PROVIDE mo_two_e_integrals_in_map
|
|
|
|
|
|
|
|
do j=1,sze
|
2020-05-28 11:57:12 +02:00
|
|
|
call get_mo_two_e_integrals(k,j,l,sze,out_array(1,j),map)
|
2019-01-25 11:39:31 +01:00
|
|
|
enddo
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
subroutine get_mo_two_e_integrals_coulomb_ii(k,l,sze,out_val,map)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns multiple integrals <ki|li>
|
|
|
|
! k(1)i(2) 1/r12 l(1)i(2) :: out_val(i1)
|
|
|
|
! for k,l fixed.
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: k,l, sze
|
|
|
|
double precision, intent(out) :: out_val(sze)
|
|
|
|
type(map_type), intent(inout) :: map
|
|
|
|
integer :: i
|
2020-05-28 11:57:12 +02:00
|
|
|
double precision, external :: get_two_e_integral
|
2019-01-25 11:39:31 +01:00
|
|
|
PROVIDE mo_two_e_integrals_in_map
|
|
|
|
|
|
|
|
do i=1,sze
|
2020-05-28 11:57:12 +02:00
|
|
|
out_val(i) = get_two_e_integral(k,i,l,i,map)
|
2019-01-25 11:39:31 +01:00
|
|
|
enddo
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
subroutine get_mo_two_e_integrals_exch_ii(k,l,sze,out_val,map)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Returns multiple integrals <ki|il>
|
|
|
|
! k(1)i(2) 1/r12 i(1)l(2) :: out_val(i1)
|
|
|
|
! for k,l fixed.
|
|
|
|
END_DOC
|
|
|
|
integer, intent(in) :: k,l, sze
|
|
|
|
double precision, intent(out) :: out_val(sze)
|
|
|
|
type(map_type), intent(inout) :: map
|
|
|
|
integer :: i
|
2020-05-28 11:57:12 +02:00
|
|
|
double precision, external :: get_two_e_integral
|
2019-01-25 11:39:31 +01:00
|
|
|
PROVIDE mo_two_e_integrals_in_map
|
|
|
|
|
|
|
|
do i=1,sze
|
2020-05-28 11:57:12 +02:00
|
|
|
out_val(i) = get_two_e_integral(k,i,i,l,map)
|
2019-01-25 11:39:31 +01:00
|
|
|
enddo
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2021-01-21 10:52:33 +01:00
|
|
|
BEGIN_PROVIDER [ logical, banned_excitation, (mo_num,mo_num) ]
|
|
|
|
&BEGIN_PROVIDER [ logical, use_banned_excitation ]
|
2020-09-25 15:14:56 +02:00
|
|
|
implicit none
|
|
|
|
use map_module
|
|
|
|
BEGIN_DOC
|
|
|
|
! If true, the excitation is banned in the selection. Useful with local MOs.
|
|
|
|
END_DOC
|
|
|
|
banned_excitation = .False.
|
2021-01-21 10:52:33 +01:00
|
|
|
integer :: i,j, icount
|
2020-09-25 15:14:56 +02:00
|
|
|
integer(key_kind) :: idx
|
|
|
|
double precision :: tmp
|
2021-01-21 10:52:33 +01:00
|
|
|
|
|
|
|
icount = 1 ! Avoid division by zero
|
2020-09-25 15:14:56 +02:00
|
|
|
do j=1,mo_num
|
|
|
|
do i=1,j-1
|
|
|
|
call two_e_integrals_index(i,j,j,i,idx)
|
|
|
|
!DIR$ FORCEINLINE
|
|
|
|
call map_get(mo_integrals_map,idx,tmp)
|
2020-11-11 19:13:04 +01:00
|
|
|
banned_excitation(i,j) = dabs(tmp) < 1.d-14
|
2020-09-25 15:14:56 +02:00
|
|
|
banned_excitation(j,i) = banned_excitation(i,j)
|
2021-01-24 23:09:37 +01:00
|
|
|
if (banned_excitation(i,j)) icount = icount+2
|
2020-09-25 15:14:56 +02:00
|
|
|
enddo
|
|
|
|
enddo
|
2021-01-24 23:09:37 +01:00
|
|
|
use_banned_excitation = (mo_num*mo_num) / icount <= 100 !1%
|
2021-01-21 10:52:33 +01:00
|
|
|
if (use_banned_excitation) then
|
|
|
|
print *, 'Using sparsity of exchange integrals'
|
|
|
|
endif
|
|
|
|
|
2020-09-25 15:14:56 +02:00
|
|
|
END_PROVIDER
|
|
|
|
|
|
|
|
|
2019-01-25 11:39:31 +01:00
|
|
|
|
|
|
|
integer*8 function get_mo_map_size()
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Return the number of elements in the MO map
|
|
|
|
END_DOC
|
|
|
|
get_mo_map_size = mo_integrals_map % n_elements
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
subroutine dump_mo_integrals(filename)
|
|
|
|
use map_module
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Save to disk the |MO| integrals
|
|
|
|
END_DOC
|
|
|
|
character*(*), intent(in) :: filename
|
|
|
|
integer(cache_key_kind), pointer :: key(:)
|
|
|
|
real(integral_kind), pointer :: val(:)
|
|
|
|
integer*8 :: i,j, n
|
|
|
|
if (.not.mpi_master) then
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
call ezfio_set_work_empty(.False.)
|
|
|
|
open(unit=66,file=filename,FORM='unformatted')
|
|
|
|
write(66) integral_kind, key_kind
|
|
|
|
write(66) mo_integrals_map%sorted, mo_integrals_map%map_size, &
|
|
|
|
mo_integrals_map%n_elements
|
|
|
|
do i=0_8,mo_integrals_map%map_size
|
|
|
|
write(66) mo_integrals_map%map(i)%sorted, mo_integrals_map%map(i)%map_size,&
|
|
|
|
mo_integrals_map%map(i)%n_elements
|
|
|
|
enddo
|
|
|
|
do i=0_8,mo_integrals_map%map_size
|
|
|
|
key => mo_integrals_map%map(i)%key
|
|
|
|
val => mo_integrals_map%map(i)%value
|
|
|
|
n = mo_integrals_map%map(i)%n_elements
|
|
|
|
write(66) (key(j), j=1,n), (val(j), j=1,n)
|
|
|
|
enddo
|
|
|
|
close(66)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
integer function load_mo_integrals(filename)
|
|
|
|
implicit none
|
|
|
|
BEGIN_DOC
|
|
|
|
! Read from disk the |MO| integrals
|
|
|
|
END_DOC
|
|
|
|
character*(*), intent(in) :: filename
|
|
|
|
integer*8 :: i
|
|
|
|
integer(cache_key_kind), pointer :: key(:)
|
|
|
|
real(integral_kind), pointer :: val(:)
|
|
|
|
integer :: iknd, kknd
|
|
|
|
integer*8 :: n, j
|
|
|
|
load_mo_integrals = 1
|
|
|
|
open(unit=66,file=filename,FORM='unformatted',STATUS='UNKNOWN')
|
|
|
|
read(66,err=98,end=98) iknd, kknd
|
|
|
|
if (iknd /= integral_kind) then
|
|
|
|
print *, 'Wrong integrals kind in file :', iknd
|
|
|
|
stop 1
|
|
|
|
endif
|
|
|
|
if (kknd /= key_kind) then
|
|
|
|
print *, 'Wrong key kind in file :', kknd
|
|
|
|
stop 1
|
|
|
|
endif
|
|
|
|
read(66,err=98,end=98) mo_integrals_map%sorted, mo_integrals_map%map_size,&
|
|
|
|
mo_integrals_map%n_elements
|
|
|
|
do i=0_8, mo_integrals_map%map_size
|
|
|
|
read(66,err=99,end=99) mo_integrals_map%map(i)%sorted, &
|
|
|
|
mo_integrals_map%map(i)%map_size, mo_integrals_map%map(i)%n_elements
|
|
|
|
call cache_map_reallocate(mo_integrals_map%map(i),mo_integrals_map%map(i)%map_size)
|
|
|
|
enddo
|
|
|
|
do i=0_8, mo_integrals_map%map_size
|
|
|
|
key => mo_integrals_map%map(i)%key
|
|
|
|
val => mo_integrals_map%map(i)%value
|
|
|
|
n = mo_integrals_map%map(i)%n_elements
|
|
|
|
read(66,err=99,end=99) (key(j), j=1,n), (val(j), j=1,n)
|
|
|
|
enddo
|
|
|
|
call map_sort(mo_integrals_map)
|
|
|
|
load_mo_integrals = 0
|
|
|
|
return
|
|
|
|
99 continue
|
|
|
|
call map_deinit(mo_integrals_map)
|
|
|
|
98 continue
|
|
|
|
stop 'Problem reading mo_integrals_map file in work/'
|
|
|
|
|
|
|
|
end
|
|
|
|
|