Blame view
fvn_sparse/fvn_sparse.f90
9.67 KB
b93026039 git-svn-id: https... |
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
module fvn_sparse use fvn_common implicit none ! Sparse solving interface fvn_sparse_solve module procedure fvn_zl_sparse_solve,fvn_zi_sparse_solve,fvn_dl_sparse_solve,fvn_di_sparse_solve end interface fvn_sparse_solve contains !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! SPARSE RESOLUTION ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! ! Sparse resolution is done by interfaçing Tim Davi's UMFPACK ! http://www.cise.ufl.edu/research/sparse/SuiteSparse/ ! Used packages from SuiteSparse : AMD,UMFPACK,UFconfig ! ! Solve Ax=B using UMFPACK ! ! Where A is a sparse matrix given in its triplet form ! T -> non zero elements ! Ti,Tj -> row and column index (1-based) of the given elt ! n : rank of matrix A ! nz : number of non zero elts ! ! fvn_*_sparse_solve ! * = zl : double complex + integer(8) ! * = zi : double complex + integer(4) ! subroutine fvn_zl_sparse_solve(n,nz,T,Ti,Tj,B,x,status) implicit none integer(8), intent(in) :: n,nz complex(8),dimension(nz),intent(in) :: T integer(8),dimension(nz),intent(in) :: Ti,Tj complex(8),dimension(n),intent(in) :: B complex(8),dimension(n),intent(out) :: x integer(8), intent(out) :: status integer(8),dimension(:),allocatable :: wTi,wTj real(8),dimension(:),allocatable :: Tx,Tz real(8),dimension(:),allocatable :: Ax,Az integer(8),dimension(:),allocatable :: Ap,Ai integer(8) :: symbolic,numeric real(8),dimension(:),allocatable :: xx,xz,bx,bz real(8),dimension(90) :: info real(8),dimension(20) :: control integer(8) :: sys status=0 ! we use a working copy of Ti and Tj to perform 1-based to 0-based translation ! Tx and Tz are the real and imaginary parts of T allocate(wTi(nz),wTj(nz)) allocate(Tx(nz),Tz(nz)) Tx=dble(T) Tz=aimag(T) wTi=Ti-1 wTj=Tj-1 allocate(Ax(nz),Az(nz)) allocate(Ap(n+1),Ai(nz)) ! perform the triplet to compressed column form -> Ap,Ai,Ax,Az call umfpack_zl_triplet_to_col(n,n,nz,wTi,wTj,Tx,Tz,Ap,Ai,Ax,Az,status) ! if status is not zero a problem has occured if (status /= 0) then write(*,*) "Problem during umfpack_zl_triplet_to_col" endif ! Define defaults control values call umfpack_zl_defaults(control) ! Symbolic analysis call umfpack_zl_symbolic(n,n,Ap,Ai,Ax,Az,symbolic, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during symbolic analysis" status=info(1) endif ! Numerical factorization call umfpack_zl_numeric (Ap, Ai, Ax, Az, symbolic, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during numerical factorization" status=info(1) endif ! free the C symbolic pointer call umfpack_zl_free_symbolic (symbolic) allocate(bx(n),bz(n),xx(n),xz(n)) bx=dble(B) bz=aimag(B) sys=0 ! sys may be used to define type of solving -> see umfpack.h ! Solving call umfpack_zl_solve (sys, Ap, Ai, Ax,Az, xx,xz, bx,bz, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during solving" status=info(1) endif ! free the C numeric pointer call umfpack_zl_free_numeric (numeric) x=dcmplx(xx,xz) deallocate(bx,bz,xx,xz) deallocate(Ax,Az) deallocate(Tx,Tz) deallocate(wTi,wTj) end subroutine subroutine fvn_zi_sparse_solve(n,nz,T,Ti,Tj,B,x,status) implicit none integer(4), intent(in) :: n,nz complex(8),dimension(nz),intent(in) :: T integer(4),dimension(nz),intent(in) :: Ti,Tj complex(8),dimension(n),intent(in) :: B complex(8),dimension(n),intent(out) :: x integer(4), intent(out) :: status integer(4),dimension(:),allocatable :: wTi,wTj real(8),dimension(:),allocatable :: Tx,Tz real(8),dimension(:),allocatable :: Ax,Az integer(4),dimension(:),allocatable :: Ap,Ai !integer(8) :: symbolic,numeric integer(4),dimension(2) :: symbolic,numeric ! As symbolic and numeric are used to store a C pointer, it is necessary to ! still use an integer(8) for 64bits machines ! An other possibility : integer(4),dimension(2) :: symbolic,numeric real(8),dimension(:),allocatable :: xx,xz,bx,bz real(8),dimension(90) :: info real(8),dimension(20) :: control integer(4) :: sys status=0 ! we use a working copy of Ti and Tj to perform 1-based to 0-based translation ! Tx and Tz are the real and imaginary parts of T allocate(wTi(nz),wTj(nz)) allocate(Tx(nz),Tz(nz)) Tx=dble(T) Tz=aimag(T) wTi=Ti-1 wTj=Tj-1 allocate(Ax(nz),Az(nz)) allocate(Ap(n+1),Ai(nz)) ! perform the triplet to compressed column form -> Ap,Ai,Ax,Az call umfpack_zi_triplet_to_col(n,n,nz,wTi,wTj,Tx,Tz,Ap,Ai,Ax,Az,status) ! if status is not zero a problem has occured if (status /= 0) then write(*,*) "Problem during umfpack_zl_triplet_to_col" endif ! Define defaults control values call umfpack_zi_defaults(control) ! Symbolic analysis call umfpack_zi_symbolic(n,n,Ap,Ai,Ax,Az,symbolic, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during symbolic analysis" status=info(1) endif ! Numerical factorization call umfpack_zi_numeric (Ap, Ai, Ax, Az, symbolic, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during numerical factorization" status=info(1) endif ! free the C symbolic pointer call umfpack_zi_free_symbolic (symbolic) allocate(bx(n),bz(n),xx(n),xz(n)) bx=dble(B) bz=aimag(B) sys=0 ! sys may be used to define type of solving -> see umfpack.h ! Solving call umfpack_zi_solve (sys, Ap, Ai, Ax,Az, xx,xz, bx,bz, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during solving" status=info(1) endif ! free the C numeric pointer call umfpack_zi_free_numeric (numeric) x=dcmplx(xx,xz) deallocate(bx,bz,xx,xz) deallocate(Ax,Az) deallocate(Tx,Tz) deallocate(wTi,wTj) end subroutine subroutine fvn_dl_sparse_solve(n,nz,T,Ti,Tj,B,x,status) implicit none integer(8), intent(in) :: n,nz real(8),dimension(nz),intent(in) :: T integer(8),dimension(nz),intent(in) :: Ti,Tj real(8),dimension(n),intent(in) :: B real(8),dimension(n),intent(out) :: x integer(8), intent(out) :: status integer(8),dimension(:),allocatable :: wTi,wTj real(8),dimension(:),allocatable :: A integer(8),dimension(:),allocatable :: Ap,Ai !integer(8) :: symbolic,numeric integer(8) :: symbolic,numeric real(8),dimension(90) :: info real(8),dimension(20) :: control integer(8) :: sys status=0 ! we use a working copy of Ti and Tj to perform 1-based to 0-based translation allocate(wTi(nz),wTj(nz)) wTi=Ti-1 wTj=Tj-1 allocate(A(nz)) allocate(Ap(n+1),Ai(nz)) ! perform the triplet to compressed column form -> Ap,Ai,Ax,Az call umfpack_dl_triplet_to_col(n,n,nz,wTi,wTj,T,Ap,Ai,A,status) ! if status is not zero a problem has occured if (status /= 0) then write(*,*) "Problem during umfpack_dl_triplet_to_col" endif ! Define defaults control values call umfpack_dl_defaults(control) ! Symbolic analysis call umfpack_dl_symbolic(n,n,Ap,Ai,A,symbolic, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during symbolic analysis" status=info(1) endif ! Numerical factorization call umfpack_dl_numeric (Ap, Ai, A, symbolic, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during numerical factorization" status=info(1) endif ! free the C symbolic pointer call umfpack_dl_free_symbolic (symbolic) sys=0 ! sys may be used to define type of solving -> see umfpack.h ! Solving call umfpack_dl_solve (sys, Ap, Ai, A, x, B, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during solving" status=info(1) endif ! free the C numeric pointer call umfpack_dl_free_numeric (numeric) deallocate(A) deallocate(wTi,wTj) end subroutine subroutine fvn_di_sparse_solve(n,nz,T,Ti,Tj,B,x,status) implicit none integer(4), intent(in) :: n,nz real(8),dimension(nz),intent(in) :: T integer(4),dimension(nz),intent(in) :: Ti,Tj real(8),dimension(n),intent(in) :: B real(8),dimension(n),intent(out) :: x integer(4), intent(out) :: status integer(4),dimension(:),allocatable :: wTi,wTj real(8),dimension(:),allocatable :: A integer(4),dimension(:),allocatable :: Ap,Ai !integer(8) :: symbolic,numeric integer(4),dimension(2) :: symbolic,numeric ! As symbolic and numeric are used to store a C pointer, it is necessary to ! still use an integer(8) for 64bits machines ! An other possibility : integer(4),dimension(2) :: symbolic,numeric real(8),dimension(90) :: info real(8),dimension(20) :: control integer(4) :: sys status=0 ! we use a working copy of Ti and Tj to perform 1-based to 0-based translation allocate(wTi(nz),wTj(nz)) wTi=Ti-1 wTj=Tj-1 allocate(A(nz)) allocate(Ap(n+1),Ai(nz)) ! perform the triplet to compressed column form -> Ap,Ai,Ax,Az call umfpack_di_triplet_to_col(n,n,nz,wTi,wTj,T,Ap,Ai,A,status) ! if status is not zero a problem has occured if (status /= 0) then write(*,*) "Problem during umfpack_di_triplet_to_col" endif ! Define defaults control values call umfpack_di_defaults(control) ! Symbolic analysis call umfpack_di_symbolic(n,n,Ap,Ai,A,symbolic, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during symbolic analysis" status=info(1) endif ! Numerical factorization call umfpack_di_numeric (Ap, Ai, A, symbolic, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during numerical factorization" status=info(1) endif ! free the C symbolic pointer call umfpack_di_free_symbolic (symbolic) sys=0 ! sys may be used to define type of solving -> see umfpack.h ! Solving call umfpack_di_solve (sys, Ap, Ai, A, x, B, numeric, control, info) ! info(1) should be zero if (info(1) /= 0) then write(*,*) "Problem during solving" status=info(1) endif ! free the C numeric pointer call umfpack_di_free_numeric (numeric) deallocate(A) deallocate(wTi,wTj) end subroutine end module fvn_sparse |