10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2025-04-30 04:04:52 +02:00
QuantumPackage/src/utils_complex/test_cd_ksym.irp.f
2022-09-21 15:47:51 -05:00

235 lines
8.1 KiB
Fortran

program test_cd_ksym
call run
end
subroutine run
use map_module
implicit none
!integer ::i,j,k,l
provide qktok2 minusk kconserv
!print*,'minusk'
!do i=1,kpt_num
! j = minusk(i)
! print'(2(I4))',i,j
!enddo
!print*,'qktok2'
!do i=1,kpt_num
! do j=1,kpt_num
! k = qktok2(i,j)
! print'(3(I4))',i,j,k
! enddo
!enddo
!print*,'kconserv'
!do i=1,kpt_num
! do j=1,kpt_num
! do k=1,kpt_num
! l = kconserv(i,j,k)
! print'(4(I4))',i,j,k,l
! enddo
! enddo
!enddo
integer :: i,k,j,l
integer :: ki,kk,kj,kl
integer :: ii,ik,ij,il
integer :: kikk2,kjkl2,jl2,ik2
integer :: i_ao,j_ao,i_cd,kq
complex*16,allocatable :: ints_ik(:,:,:), ints_jl(:,:,:), ints_ikjl(:,:,:,:)
complex*16 :: integral
integer :: n_integrals_1, n_integrals_2
integer :: size_buffer
integer(key_kind),allocatable :: buffer_i_1(:), buffer_i_2(:)
real(integral_kind),allocatable :: buffer_values_1(:), buffer_values_2(:)
double precision :: tmp_re,tmp_im
integer :: ao_num_kpt_2
double precision :: cpu_1, cpu_2, wall_1, wall_2, wall_0
double precision :: map_mb
logical :: use_map1
integer(keY_kind) :: idx_tmp
double precision :: sign
ao_num_kpt_2 = ao_num_per_kpt * ao_num_per_kpt
size_buffer = min(ao_num_per_kpt*ao_num_per_kpt*ao_num_per_kpt,16000000)
print*, 'Providing the ao_bielec integrals from 3-index cholesky integrals'
call write_time(6)
! call ezfio_set_integrals_bielec_disk_access_mo_integrals('Write')
! TOUCH read_mo_integrals read_ao_integrals write_mo_integrals write_ao_integrals
call wall_time(wall_1)
call cpu_time(cpu_1)
!allocate( ints_jl(ao_num_per_kpt,ao_num_per_kpt,chol_num_max))
wall_0 = wall_1
! ki + kj == kk + kl required for <ij|kl> to be nonzero
!TODO: change loops so that we only iterate over "correct" slices (i.e. ik block is stored directly, not as conj. transp.)
! possible cases for (ik,jl) are (+,+), (+,-), (-,+), (-,-)
! where + is the slice used as stored, and - is the conj. transp. of the stored data
! (+,+) and (-,-) give the same information; we should always use (+,+)
! (+,-) and (-,+) give the same information; we should always use (+,-)
do kQ = 1, kpt_num
do kl = 1, kpt_num
kj = qktok2(kQ,kl)
assert(kQ == qktok2(kj,kl))
if (kj>kl) cycle
call idx2_tri_int(kj,kl,kjkl2)
!TODO: verify the kj, kl as 4th index in expressions below
!if (kpt_sparse_map(kQ) > 0) then
! ints_jl = chol_ao_integrals_complex(:,:,:,kl,kpt_sparse_map(kQ))
!else
! !do i_ao=1,ao_num_per_kpt
! ! do j_ao=1,ao_num_per_kpt
! ! do i_cd=1,chol_num_max
! ! ints_jl(i_ao,j_ao,i_cd) = dconjg(chol_ao_integrals_complex(j_ao,i_ao,i_cd,kj,-kpt_sparse_map(kQ)))
! ! enddo
! ! enddo
! !enddo
!endif
!allocate( &
! ints_ik(ao_num_per_kpt,ao_num_per_kpt,chol_num_max), &
! ints_ikjl(ao_num_per_kpt,ao_num_per_kpt,ao_num_per_kpt,ao_num_per_kpt), &
! buffer_i_1(size_buffer), &
! buffer_i_2(size_buffer), &
! buffer_values_1(size_buffer), &
! buffer_values_2(size_buffer) &
!)
do kk=1,kl
ki = qktok2(minusk(kk),kQ)
assert(ki == kconserv(kl,kk,kj))
if (ki>kl) cycle
! if ((kl == kj) .and. (ki > kk)) cycle
call idx2_tri_int(ki,kk,kikk2)
print*,kQ,kl,kj,kk,ki
! if (kikk2 > kjkl2) cycle
!TODO: check this! (ki, kk slice index and transpose/notranspose)
!if (kpt_sparse_map(kQ) > 0) then
! ints_ik = chol_ao_integrals_complex(:,:,:,ki,kpt_sparse_map(kQ))
!else
! do i_ao=1,ao_num_per_kpt
! do j_ao=1,ao_num_per_kpt
! do i_cd=1,chol_num_max
! ints_jl(i_ao,j_ao,i_cd) = dconjg(chol_ao_integrals_complex(j_ao,i_ao,i_cd,kk,-kpt_sparse_map(kQ)))
! enddo
! enddo
! enddo
!endif
!call zgemm('N','T', ao_num_kpt_2, ao_num_kpt_2, chol_num(kQ), &
! (1.d0,0.d0), ints_ik, ao_num_kpt_2, &
! ints_jl, ao_num_kpt_2, &
! (0.d0,0.d0), ints_ikjl, ao_num_kpt_2)
!n_integrals_1=0
!n_integrals_2=0
!do il=1,ao_num_per_kpt
! l=il+(kl-1)*ao_num_per_kpt
! do ij=1,ao_num_per_kpt
! j=ij+(kj-1)*ao_num_per_kpt
! if (j>l) exit
! call idx2_tri_int(j,l,jl2)
! do ik=1,ao_num_per_kpt
! k=ik+(kk-1)*ao_num_per_kpt
! if (k>l) exit
! do ii=1,ao_num_per_kpt
! i=ii+(ki-1)*ao_num_per_kpt
! if ((j==l) .and. (i>k)) exit
! call idx2_tri_int(i,k,ik2)
! if (ik2 > jl2) exit
! integral = ints_ikjl(ii,ik,ij,il)
! ! print*,i,k,j,l,real(integral),imag(integral)
! if (cdabs(integral) < ao_integrals_threshold) then
! cycle
! endif
! call ao_two_e_integral_complex_map_idx_sign(i,j,k,l,use_map1,idx_tmp,sign)
! tmp_re = dble(integral)
! tmp_im = dimag(integral)
! !if (use_map1) then
! ! n_integrals_1 += 1
! ! buffer_i_1(n_integrals_1)=idx_tmp
! ! buffer_values_1(n_integrals_1)=tmp_re
! ! if (sign.ne.0.d0) then
! ! n_integrals_1 += 1
! ! buffer_i_1(n_integrals_1)=idx_tmp+1
! ! buffer_values_1(n_integrals_1)=tmp_im*sign
! ! endif
! ! if (n_integrals_1 >= size(buffer_i_1)-1) then
! ! call insert_into_ao_integrals_map(n_integrals_1,buffer_i_1,buffer_values_1)
! ! n_integrals_1 = 0
! ! endif
! !else
! !n_integrals_2 += 1
! !buffer_i_2(n_integrals_2)=idx_tmp
! !buffer_values_2(n_integrals_2)=tmp_re
! !if (sign.ne.0.d0) then
! ! n_integrals_2 += 1
! ! buffer_i_2(n_integrals_2)=idx_tmp+1
! ! buffer_values_2(n_integrals_2)=tmp_im*sign
! !endif
! !if (n_integrals_2 >= size(buffer_i_2)-1) then
! ! call insert_into_ao_integrals_map_2(n_integrals_2,buffer_i_2,buffer_values_2)
! ! n_integrals_2 = 0
! !endif
! endif
! enddo !ii
! enddo !ik
! enddo !ij
!enddo !il
!if (n_integrals_1 > 0) then
! call insert_into_ao_integrals_map(n_integrals_1,buffer_i_1,buffer_values_1)
!endif
!if (n_integrals_2 > 0) then
! call insert_into_ao_integrals_map_2(n_integrals_2,buffer_i_2,buffer_values_2)
!endif
enddo !kk
!deallocate( &
! ints_ik, &
! ints_ikjl, &
! buffer_i_1, &
! buffer_i_2, &
! buffer_values_1, &
! buffer_values_2 &
! )
enddo !kl
call wall_time(wall_2)
if (wall_2 - wall_0 > 1.d0) then
wall_0 = wall_2
!print*, 100.*float(kQ)/float(kpt_num), '% in ', &
! wall_2-wall_1,'s',map_mb(ao_integrals_map),'+',map_mb(ao_integrals_map_2),'MB'
endif
enddo !kQ
!deallocate( ints_jl )
!call map_sort(ao_integrals_map)
!call map_unique(ao_integrals_map)
!call map_sort(ao_integrals_map_2)
!call map_unique(ao_integrals_map_2)
!call map_save_to_disk(trim(ezfio_filename)//'/work/ao_ints_complex_1',ao_integrals_map)
!call map_save_to_disk(trim(ezfio_filename)//'/work/ao_ints_complex_2',ao_integrals_map_2)
!call ezfio_set_ao_two_e_ints_io_ao_two_e_integrals('Read')
call wall_time(wall_2)
call cpu_time(cpu_2)
!integer*8 :: get_ao_map_size, ao_map_size
!ao_map_size = get_ao_map_size()
print*,'AO integrals provided:'
!print*,' Size of AO map ', map_mb(ao_integrals_map),'+',map_mb(ao_integrals_map_2),'MB'
!print*,' Number of AO integrals: ', ao_map_size
print*,' cpu time :',cpu_2 - cpu_1, 's'
print*,' wall time :',wall_2 - wall_1, 's ( x ', (cpu_2-cpu_1)/(wall_2-wall_1), ')'
end