120 integer,
parameter :: IDX_I_ITER = 1
121 integer,
parameter :: IDX_I_METHOD = 2
122 integer,
parameter :: IDX_I_PRECOND = 3
123 integer,
parameter :: IDX_I_NSET = 4
124 integer,
parameter :: IDX_I_ITERPREMAX = 5
125 integer,
parameter :: IDX_I_NREST = 6
126 integer,
parameter :: IDX_I_NBFGS = 60
127 integer,
parameter :: IDX_I_SCALING = 7
128 integer,
parameter :: IDX_I_PENALIZED = 11
129 integer,
parameter :: IDX_I_PENALIZED_B = 12
130 integer,
parameter :: IDX_I_MPC_METHOD = 13
131 integer,
parameter :: IDX_I_ESTCOND = 14
132 integer,
parameter :: IDX_I_CONTACT_ELIM = 15
133 integer,
parameter :: IDX_I_RECOMPUTE_RESIDUAL = 16
134 integer,
parameter :: IDX_I_ITERLOG = 21
135 integer,
parameter :: IDX_I_TIMELOG = 22
136 integer,
parameter :: IDX_I_LOGLEVEL = 24
137 integer,
parameter :: IDX_I_DUMP = 31
138 integer,
parameter :: IDX_I_DUMP_EXIT = 32
139 integer,
parameter :: IDX_I_USEJAD = 33
140 integer,
parameter :: IDX_I_NCOLOR_IN = 34
141 integer,
parameter :: IDX_I_MAXRECYCLE_PRECOND = 35
142 integer,
parameter :: IDX_I_MATVEC_IMPL = 36
143 integer,
parameter :: IDX_I_PRECOND_IMPL = 37
144 integer,
parameter :: IDX_I_NRECYCLE_PRECOND = 96
145 integer,
parameter :: IDX_I_FLAG_NUMFACT = 97
146 integer,
parameter :: IDX_I_FLAG_SYMBFACT = 98
147 integer,
parameter :: IDX_I_SOLVER_TYPE = 99
149 integer,
parameter :: IDX_I_METHOD2 = 8
150 integer,
parameter :: IDX_I_FLAG_CONVERGED = 81
151 integer,
parameter :: IDX_I_FLAG_DIVERGED = 82
153 integer,
parameter :: IDX_I_SOLVER_OPT_S = 41
154 integer,
parameter :: IDX_I_SOLVER_OPT_E = 50
156 integer,
parameter :: IDX_R_RESID = 1
157 integer,
parameter :: IDX_R_SIGMA_DIAG = 2
158 integer,
parameter :: IDX_R_OMEGA = 3
159 integer,
parameter :: IDX_R_THRESH = 4
160 integer,
parameter :: IDX_R_FILTER = 5
161 integer,
parameter :: IDX_R_PENALTY = 11
162 integer,
parameter :: IDX_R_PENALTY_ALPHA = 12
164 integer,
parameter :: IDX_R_SOLVER_OPT_S = 41
165 integer,
parameter :: IDX_R_SOLVER_OPT_E = 50
183 #ifndef HECMW_ARCH_DEFAULT_MATVEC_IMPL
184 #define HECMW_ARCH_DEFAULT_MATVEC_IMPL HECMW_MATVEC_IMPL_BSR
186 #ifndef HECMW_ARCH_DEFAULT_PRECOND_IMPL
187 #define HECMW_ARCH_DEFAULT_PRECOND_IMPL HECMW_PRECOND_IMPL_BSR
259 if (
associated(hecmat%D))
deallocate(hecmat%D)
260 if (
associated(hecmat%B))
deallocate(hecmat%B)
261 if (
associated(hecmat%X))
deallocate(hecmat%X)
262 if (
associated(hecmat%AL))
deallocate(hecmat%AL)
263 if (
associated(hecmat%AU))
deallocate(hecmat%AU)
264 if (
associated(hecmat%indexL))
deallocate(hecmat%indexL)
265 if (
associated(hecmat%indexU))
deallocate(hecmat%indexU)
266 if (
associated(hecmat%itemL))
deallocate(hecmat%itemL)
267 if (
associated(hecmat%itemU))
deallocate(hecmat%itemU)
269 if (
associated(hecmat%A))
deallocate(hecmat%A)
270 if (
associated(hecmat%indexA))
deallocate(hecmat%indexA)
271 if (
associated(hecmat%itemA))
deallocate(hecmat%itemA)
278 hecmat%N = hecmatorg%N
279 hecmat%NP = hecmatorg%NP
280 hecmat%NDOF = hecmatorg%NDOF
281 hecmat%NPL = hecmatorg%NPL
282 hecmat%NPU = hecmatorg%NPU
283 allocate(hecmat%indexL(0:
size(hecmatorg%indexL)-1))
284 allocate(hecmat%indexU(0:
size(hecmatorg%indexU)-1))
285 allocate(hecmat%itemL (
size(hecmatorg%itemL )))
286 allocate(hecmat%itemU (
size(hecmatorg%itemU )))
287 allocate(hecmat%D (
size(hecmatorg%D )))
288 allocate(hecmat%AL(
size(hecmatorg%AL)))
289 allocate(hecmat%AU(
size(hecmatorg%AU)))
290 allocate(hecmat%B (
size(hecmatorg%B )))
291 allocate(hecmat%X (
size(hecmatorg%X )))
292 hecmat%indexL = hecmatorg%indexL
293 hecmat%indexU = hecmatorg%indexU
294 hecmat%itemL = hecmatorg%itemL
295 hecmat%itemU = hecmatorg%itemU
306 integer(kind=kint) :: ierr
307 integer(kind=kint) :: i
309 if (hecmat%N /= hecmatorg%N) ierr = 1
310 if (hecmat%NP /= hecmatorg%NP) ierr = 1
311 if (hecmat%NDOF /= hecmatorg%NDOF) ierr = 1
312 if (hecmat%NPL /= hecmatorg%NPL) ierr = 1
313 if (hecmat%NPU /= hecmatorg%NPU) ierr = 1
315 write(0,*)
'ERROR: hecmw_mat_copy_val: different profile'
318 do i = 1,
size(hecmat%D)
319 hecmat%D(i) = hecmatorg%D(i)
321 do i = 1,
size(hecmat%AL)
322 hecmat%AL(i) = hecmatorg%AL(i)
324 do i = 1,
size(hecmat%AU)
325 hecmat%AU(i) = hecmatorg%AU(i)
331 integer(kind=kint) :: iter
333 hecmat%Iarray(idx_i_iter) = iter
345 integer(kind=kint) :: method
347 hecmat%Iarray(idx_i_method) = method
359 integer(kind=kint) :: method2
361 hecmat%Iarray(idx_i_method2) = method2
373 integer(kind=kint) :: precond
375 hecmat%Iarray(idx_i_precond) = precond
387 integer(kind=kint) :: nset
389 hecmat%Iarray(idx_i_nset) = nset
401 integer(kind=kint) :: iterpremax
403 if (iterpremax.lt.0) iterpremax= 0
404 if (iterpremax.gt.4) iterpremax= 4
406 hecmat%Iarray(idx_i_iterpremax) = iterpremax
418 integer(kind=kint) :: nrest
420 hecmat%Iarray(idx_i_nrest) = nrest
432 integer(kind=kint) :: nbfgs
434 hecmat%Iarray(idx_i_nbfgs) = nbfgs
446 integer(kind=kint) :: scaling
448 hecmat%Iarray(idx_i_scaling) = scaling
460 integer(kind=kint) :: penalized
462 hecmat%Iarray(idx_i_penalized) = penalized
474 integer(kind=kint) :: penalized_b
476 hecmat%Iarray(idx_i_penalized_b) = penalized_b
488 integer(kind=kint) :: mpc_method
490 hecmat%Iarray(idx_i_mpc_method) = mpc_method
508 integer(kind=kint) :: estcond
509 hecmat%Iarray(idx_i_estcond) = estcond
520 integer(kind=kint) :: recompute_residual
521 hecmat%Iarray(idx_i_recompute_residual) = recompute_residual
532 integer(kind=kint) :: contact_elim
533 hecmat%Iarray(idx_i_contact_elim) = contact_elim
538 integer(kind=kint) :: iterlog
540 hecmat%Iarray(idx_i_iterlog) = iterlog
552 integer(kind=kint) :: timelog
554 hecmat%Iarray(idx_i_timelog) = timelog
569 integer(kind=kint) :: loglevel
571 hecmat%Iarray(idx_i_loglevel) = loglevel
589 integer(kind=kint) :: dump_type
590 hecmat%Iarray(idx_i_dump) = dump_type
601 integer(kind=kint) :: dump_exit
602 hecmat%Iarray(idx_i_dump_exit) = dump_exit
613 integer(kind=kint) :: usejad
614 hecmat%Iarray(idx_i_usejad) = usejad
625 integer(kind=kint) :: matvec_impl
626 hecmat%Iarray(idx_i_matvec_impl) = matvec_impl
637 integer(kind=kint) :: precond_impl
638 hecmat%Iarray(idx_i_precond_impl) = precond_impl
649 integer(kind=kint) :: ncolor_in
650 hecmat%Iarray(idx_i_ncolor_in) = ncolor_in
661 integer(kind=kint) :: maxrecycle_precond
662 if (maxrecycle_precond > 100) maxrecycle_precond = 100
663 hecmat%Iarray(idx_i_maxrecycle_precond) = maxrecycle_precond
674 hecmat%Iarray(idx_i_nrecycle_precond) = 0
679 hecmat%Iarray(idx_i_nrecycle_precond) = hecmat%Iarray(idx_i_nrecycle_precond) + 1
690 integer(kind=kint) :: flag_numfact
691 hecmat%Iarray(idx_i_flag_numfact) = flag_numfact
702 integer(kind=kint) :: flag_symbfact
703 hecmat%Iarray(idx_i_flag_symbfact) = flag_symbfact
708 hecmat%Iarray(idx_i_flag_symbfact) = 0
719 integer(kind=kint) :: solver_type
720 hecmat%Iarray(idx_i_solver_type) = solver_type
725 integer(kind=kint) :: flag_converged
726 hecmat%Iarray(idx_i_flag_converged) = flag_converged
737 integer(kind=kint) :: flag_diverged
738 hecmat%Iarray(idx_i_flag_diverged) = flag_diverged
749 integer(kind=kint) :: solver_opt(:)
750 integer(kind=kint) :: nopt
751 nopt = idx_i_solver_opt_e - idx_i_solver_opt_s + 1
752 hecmat%Iarray(idx_i_solver_opt_s:idx_i_solver_opt_e) = solver_opt(1:nopt)
757 integer(kind=kint) :: solver_opt(:)
758 integer(kind=kint) :: nopt
759 nopt = idx_i_solver_opt_e - idx_i_solver_opt_s + 1
760 solver_opt(1:nopt) = hecmat%Iarray(idx_i_solver_opt_s:idx_i_solver_opt_e)
765 real(kind=
kreal) :: solver_ropt(:)
766 integer(kind=kint) :: nopt
767 nopt = idx_r_solver_opt_e - idx_r_solver_opt_s + 1
768 hecmat%Rarray(idx_r_solver_opt_s:idx_r_solver_opt_e) = solver_ropt(1:nopt)
773 real(kind=
kreal) :: solver_ropt(:)
774 integer(kind=kint) :: nopt
775 nopt = idx_r_solver_opt_e - idx_r_solver_opt_s + 1
776 solver_ropt(1:nopt) = hecmat%Rarray(idx_r_solver_opt_s:idx_r_solver_opt_e)
781 real(kind=
kreal) :: resid
783 hecmat%Rarray(idx_r_resid) = resid
795 real(kind=
kreal) :: sigma_diag
797 if( sigma_diag < 0.d0 )
then
798 hecmat%Rarray(idx_r_sigma_diag) = -1.d0
799 elseif( sigma_diag < 1.d0 )
then
800 hecmat%Rarray(idx_r_sigma_diag) = 1.d0
801 elseif( sigma_diag > 2.d0 )
then
802 hecmat%Rarray(idx_r_sigma_diag) = 2.d0
804 hecmat%Rarray(idx_r_sigma_diag) = sigma_diag
817 real(kind=
kreal) :: omega
821 if (omega < 0.d0 .or. omega > 2.d0 .or. abs(omega) < epsilon(1.d0) &
822 .or. abs(omega - 2.d0) < epsilon(1.d0))
then
823 hecmat%Rarray(idx_r_omega) = 1.d0
825 hecmat%Rarray(idx_r_omega) = omega
838 real(kind=
kreal) :: thresh
840 hecmat%Rarray(idx_r_thresh) = thresh
852 real(kind=
kreal) :: filter
854 hecmat%Rarray(idx_r_filter) = filter
866 real(kind=
kreal) :: penalty
868 hecmat%Rarray(idx_r_penalty) = penalty
880 real(kind=
kreal) :: alpha
882 hecmat%Rarray(idx_r_penalty_alpha) = alpha
896 integer(kind=kint) :: ndiag, i
899 ndiag = hecmat%NDOF**2 * hecmat%NP
911 real(kind=
kreal),
pointer :: diag(:)
912 integer(kind=kint) :: i, k, idx, ndof, np
916 allocate(diag(ndof * np))
920 idx = ndof * ndof * (i - 1) + (k-1) * ndof + k
921 diag(ndof * (i - 1) + k) = hecmat%D(idx)
928 integer(kind=kint) :: nrecycle, maxrecycle
929 if (hecmat%Iarray(idx_i_flag_symbfact) >= 1)
then
930 hecmat%Iarray(idx_i_flag_numfact)=1
932 elseif (hecmat%Iarray(idx_i_flag_numfact) > 1)
then
934 hecmat%Iarray(idx_i_flag_numfact) = 1
935 elseif (hecmat%Iarray(idx_i_flag_numfact) == 1)
then
938 if ( nrecycle < maxrecycle )
then
939 hecmat%Iarray(idx_i_flag_numfact) = 0
955 if (
associated(src%D)) dest%D => src%D
956 if (
associated(src%B)) dest%B => src%B
957 if (
associated(src%X)) dest%X => src%X
958 if (
associated(src%AL)) dest%AL => src%AL
959 if (
associated(src%AU)) dest%AU => src%AU
960 if (
associated(src%indexL)) dest%indexL => src%indexL
961 if (
associated(src%indexU)) dest%indexU => src%indexU
962 if (
associated(src%itemL)) dest%itemL => src%itemL
963 if (
associated(src%itemU)) dest%itemU => src%itemU
964 dest%Iarray(:) = src%Iarray(:)
965 dest%Rarray(:) = src%Rarray(:)
983 integer(kind=kint) :: i, j, k, nn, pre, pp, js, je
985 nn = hecmat%NDOF * hecmat%NDOF
986 hecmat%NPA = hecmat%NP + hecmat%NPL + hecmat%NPU
987 if (
associated(hecmat%A))
deallocate(hecmat%A)
988 if (
associated(hecmat%indexA))
deallocate(hecmat%indexA)
989 if (
associated(hecmat%itemA))
deallocate(hecmat%itemA)
990 allocate (hecmat%A(nn * hecmat%NPA))
991 allocate (hecmat%indexA(0:hecmat%NP))
992 allocate (hecmat%itemA(hecmat%NPA))
999 hecmat%indexA(i) = i + hecmat%indexL(i) + hecmat%indexU(i)
1001 pre = i - 1 + hecmat%indexU(i - 1)
1002 js= hecmat%indexL(i - 1) + 1
1003 je= hecmat%indexL(i )
1006 hecmat%itemA(pp) = hecmat%itemL(j)
1008 hecmat%A(nn * pp + k) = hecmat%AL(nn * j + k)
1012 pp = i + hecmat%indexU(i - 1) + hecmat%indexL(i)
1013 hecmat%itemA(pp) = i
1015 hecmat%A(nn * pp + k) = hecmat%D(nn * i + k)
1018 pre = i + hecmat%indexL(i)
1019 js= hecmat%indexU(i - 1) + 1
1020 je= hecmat%indexU(i )
1023 hecmat%itemA(pp) = hecmat%itemU(j)
1025 hecmat%A(nn * pp + k) = hecmat%AU(nn * j + k)
integer(kind=kint) function, public hecmw_mat_get_solver_type(hecMAT)
subroutine, public hecmw_mat_set_usejad(hecMAT, usejad)
real(kind=kreal) function, dimension(:), pointer, public hecmw_mat_diag(hecMAT)
Extract diagonal components from matrix D into a 1D vector Returns: diag(i) = D(ndof*ndof*(node-1) + ...
subroutine, public hecmw_mat_set_ncolor_in(hecMAT, ncolor_in)
integer(kind=kint) function, public hecmw_mat_get_flag_diverged(hecMAT)
subroutine, public hecmw_mat_integrate(hecMAT)
Integrate matrix components into a single array for efficient access.
integer(kind=kint), parameter, public hecmw_matvec_impl_default
real(kind=kreal) function, public hecmw_mat_get_omega(hecMAT)
subroutine, public hecmw_mat_clear_flag_symbfact(hecMAT)
real(kind=kreal) function, public hecmw_mat_get_sigma_diag(hecMAT)
real(kind=kreal) function, public hecmw_mat_diag_max(hecMAT, hecMESH)
integer(kind=kint) function, public hecmw_mat_get_iterpremax(hecMAT)
subroutine, public hecmw_mat_set_contact_elim(hecMAT, contact_elim)
integer(kind=kint) function, public hecmw_mat_get_dump_exit(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_nrest(hecMAT)
subroutine, public hecmw_mat_init(hecMAT)
subroutine, public hecmw_mat_set_omega(hecMAT, omega)
subroutine, public hecmw_mat_set_iter(hecMAT, iter)
subroutine, public hecmw_mat_set_recompute_residual(hecMAT, recompute_residual)
subroutine, public hecmw_mat_set_iterlog(hecMAT, iterlog)
subroutine, public hecmw_mat_finalize(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_nrecycle_precond(hecMAT)
integer(kind=kint), parameter, public hecmw_matvec_impl_sblas
integer(kind=kint) function, public hecmw_mat_get_penalized(hecMAT)
subroutine, public hecmw_mat_copy_val(hecMATorg, hecMAT)
subroutine, public hecmw_mat_set_flag_diverged(hecMAT, flag_diverged)
subroutine, public hecmw_mat_set_penalized_b(hecMAT, penalized_b)
real(kind=kreal) function, public hecmw_mat_get_resid(hecMAT)
subroutine, public hecmw_mat_set_estcond(hecMAT, estcond)
integer(kind=kint) function, public hecmw_mat_get_maxrecycle_precond(hecMAT)
subroutine, public hecmw_mat_set_thresh(hecMAT, thresh)
integer(kind=kint), parameter, public hecmw_precond_impl_csr
subroutine, public hecmw_mat_set_flag_converged(hecMAT, flag_converged)
integer(kind=kint) function, public hecmw_mat_get_flag_converged(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_precond_impl(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_penalized_b(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_dump(hecMAT)
subroutine, public hecmw_mat_set_matvec_impl(hecMAT, matvec_impl)
real(kind=kreal) function, public hecmw_mat_get_penalty_alpha(hecMAT)
subroutine, public hecmw_mat_get_solver_opt(hecMAT, solver_opt)
subroutine, public hecmw_mat_set_solver_ropt(hecMAT, solver_ropt)
integer(kind=kint) function, public hecmw_mat_get_nbfgs(hecMAT)
subroutine, public hecmw_mat_substitute(dest, src)
real(kind=kreal) function, public hecmw_mat_get_penalty(hecMAT)
subroutine, public hecmw_mat_recycle_precond_setting(hecMAT)
subroutine, public hecmw_mat_incr_nrecycle_precond(hecMAT)
subroutine, public hecmw_mat_set_sigma_diag(hecMAT, sigma_diag)
subroutine, public hecmw_mat_set_penalty_alpha(hecMAT, alpha)
subroutine, public hecmw_mat_clear_b(hecMAT)
subroutine, public hecmw_mat_set_dump_exit(hecMAT, dump_exit)
integer(kind=kint) function, public hecmw_mat_get_iterlog(hecMAT)
subroutine, public hecmw_mat_set_flag_symbfact(hecMAT, flag_symbfact)
integer(kind=kint) function, public hecmw_mat_get_matvec_impl(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_timelog(hecMAT)
subroutine, public hecmw_mat_set_nset(hecMAT, nset)
integer(kind=kint), parameter, public hecmw_precond_impl_bsr
subroutine, public hecmw_mat_set_flag_numfact(hecMAT, flag_numfact)
integer(kind=kint) function, public hecmw_mat_get_loglevel(hecMAT)
subroutine, public hecmw_mat_copy_profile(hecMATorg, hecMAT)
subroutine, public hecmw_mat_set_method(hecMAT, method)
subroutine, public hecmw_mat_set_filter(hecMAT, filter)
integer(kind=kint) function, public hecmw_mat_get_method2(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_flag_numfact(hecMAT)
subroutine, public hecmw_mat_set_penalized(hecMAT, penalized)
subroutine, public hecmw_mat_set_penalty(hecMAT, penalty)
subroutine, public hecmw_mat_set_maxrecycle_precond(hecMAT, maxrecycle_precond)
subroutine, public hecmw_mat_clear(hecMAT)
subroutine, public hecmw_mat_set_precond_impl(hecMAT, precond_impl)
integer(kind=kint) function, public hecmw_mat_get_contact_elim(hecMAT)
subroutine, public hecmw_mat_set_timelog(hecMAT, timelog)
subroutine, public hecmw_mat_set_resid(hecMAT, resid)
real(kind=kreal) function, public hecmw_mat_get_thresh(hecMAT)
integer(kind=kint), parameter, public hecmw_precond_impl_sblas
integer(kind=kint) function, public hecmw_mat_get_flag_symbfact(hecMAT)
integer(kind=kint), parameter, public hecmw_precond_impl_default
integer(kind=kint) function, public hecmw_mat_get_recompute_residual(hecMAT)
integer(kind=kint), parameter, public hecmw_matvec_impl_bsr
integer(kind=kint) function, public hecmw_mat_get_method(hecMAT)
subroutine, public hecmw_mat_get_solver_ropt(hecMAT, solver_ropt)
integer(kind=kint) function, public hecmw_mat_get_precond(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_nset(hecMAT)
subroutine, public hecmw_mat_set_iterpremax(hecMAT, iterpremax)
real(kind=kreal) function, public hecmw_mat_get_filter(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_estcond(hecMAT)
subroutine, public hecmw_mat_set_nrest(hecMAT, nrest)
integer(kind=kint) function, public hecmw_mat_get_usejad(hecMAT)
subroutine, public hecmw_mat_set_solver_type(hecMAT, solver_type)
subroutine, public hecmw_mat_set_method2(hecMAT, method2)
integer(kind=kint) function, public hecmw_mat_get_mpc_method(hecMAT)
integer(kind=kint) function, public hecmw_mat_get_ncolor_in(hecMAT)
subroutine, public hecmw_mat_set_nbfgs(hecMAT, nbfgs)
integer(kind=kint) function, public hecmw_mat_get_iter(hecMAT)
integer(kind=kint), parameter, public hecmw_matvec_impl_csr
subroutine, public hecmw_mat_set_precond(hecMAT, precond)
subroutine, public hecmw_mat_set_solver_opt(hecMAT, solver_opt)
integer(kind=kint) function, public hecmw_mat_get_scaling(hecMAT)
subroutine, public hecmw_mat_reset_nrecycle_precond(hecMAT)
subroutine, public hecmw_mat_set_scaling(hecMAT, scaling)
subroutine, public hecmw_mat_set_mpc_method(hecMAT, mpc_method)
subroutine, public hecmw_mat_set_dump(hecMAT, dump_type)
subroutine, public hecmw_mat_set_loglevel(hecMAT, loglevel)
Diagnostic verbosity level, set independently of TIMELOG via the !SOLVER LOGLEVEL keyword (defaults t...
integer(kind=kint), parameter hecmw_max
integer(kind=4), parameter kreal
subroutine hecmw_nullify_matrix(P)
subroutine hecmw_allreduce_r1(hecMESH, s, ntag)