-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcount.f90
75 lines (61 loc) · 2.21 KB
/
count.f90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
subroutine countnonzero
! this subroutine is to count the nonzero element of operamatbig and Hbig
use variables
use communicate
use module_sparse
use mpi
implicit none
integer :: operaindex
integer :: i,j
integer :: ierr
call master_print_message("print the sparse matrix infomation")
if(myid==0) then
write(*,*) "bigdim1=",bigdim1
write(*,*) "smadim1=",smadim1
write(*,*) "bigdim2=",bigdim1
write(*,*) "smadim2=",smadim1
write(*,*) "Hbigdim=",Hbigdim
write(*,*) "Hsmadim=",Hsmadim
write(*,*) "coeffIFdim",coeffIFdim
write(*,*) "---------------------------"
write(*,*) "HLbig",Hbigrowindex(4*subM+1,1)-1
write(*,*) "HLsma",Hsmarowindex(subM+1,1)-1
write(*,*) "HRbig",Hbigrowindex(4*subM+1,2)-1
write(*,*) "HRsma",Hsmarowindex(subM+1,2)-1
write(*,*) "coeffIF",coeffIFrowindex(4*subM+1,:)-1
end if
call MPI_BARRIER(MPI_COMM_WORLD,ierr)
do i=1,norbs,1
if(myid==orbid1(i,1)) then
operaindex=orbid1(i,2)
write(*,'(1I4,6I10)') i,bigrowindex1(4*subM+1,operaindex*3-2:operaindex*3)-1,&
smarowindex1(subM+1,operaindex*3-2:operaindex*3)-1
end if
end do
call MPI_BARRIER(MPI_COMM_WORLD,ierr)
if(logic_bondorder==1) then
do i=1,(norbs+1)/2,1
do j=i,(norbs+1)/2,1
if(bondlink(i,j)/=0) then
if(myid==orbid2(i,j,1)) then
operaindex=orbid2(i,j,2)
write(*,'(2I4,4I10)') i,j,bigrowindex2(4*subM+1,operaindex*2-1:operaindex*2)-1,&
smarowindex2(subM+1,operaindex*2-1:operaindex*2)-1
end if
end if
end do
end do
do i=(norbs+1)/2+1,norbs,1
do j=i,norbs,1
if(bondlink(i,j)/=0) then
if(myid==orbid2(i,j,1)) then
operaindex=orbid2(i,j,2)
write(*,'(2I4,4I10)') i,j,bigrowindex2(4*subM+1,operaindex*2-1:operaindex*2)-1,&
smarowindex2(subM+1,operaindex*2-1:operaindex*2)-1
end if
end if
end do
end do
end if
return
end subroutine countnonzero