diff --git a/base/internals/psi_desc_index.F90 b/base/internals/psi_desc_index.F90 index 19073225e..7f36c6ea5 100644 --- a/base/internals/psi_desc_index.F90 +++ b/base/internals/psi_desc_index.F90 @@ -38,9 +38,9 @@ ! See below for a description of the formats. ! ! Arguments: -! desc_a - type(psb_desc_type) The descriptor; in this context only the index -! mapping parts are used. -! index_in(:) - integer The index list, build format +! desc_a - type(psb_desc_type) The descriptor; in this context only the index +! mapping parts are used. +! index_in(:) - integer The index list, build format ! index_out(:) - integer(psb_ipk_), allocatable The index list, assembled format ! nxch - integer The number of data exchanges on the calling process ! nsnd - integer Total send buffer size on the calling process diff --git a/base/modules/desc/psb_desc_mod.F90 b/base/modules/desc/psb_desc_mod.F90 index dca36128f..4acbcdbaf 100644 --- a/base/modules/desc/psb_desc_mod.F90 +++ b/base/modules/desc/psb_desc_mod.F90 @@ -1,4 +1,4 @@ -! + ! Parallel Sparse BLAS version 3.5 ! (C) Copyright 2006-2018 ! Salvatore Filippone diff --git a/base/tools/psb_cd_inloc.f90 b/base/tools/psb_cd_inloc.f90 index d8fcf9702..6f9fb2a3d 100644 --- a/base/tools/psb_cd_inloc.f90 +++ b/base/tools/psb_cd_inloc.f90 @@ -89,7 +89,6 @@ subroutine psb_cd_inloc(v, ictxt, desc, info, globalcheck,idx) call psb_barrier(ictxt) t0 = psb_wtime() end if - loc_row = size(v) m = maxval(v) nrt = loc_row diff --git a/base/tools/psb_cdprt.f90 b/base/tools/psb_cdprt.f90 index 213513f3b..10222f37f 100644 --- a/base/tools/psb_cdprt.f90 +++ b/base/tools/psb_cdprt.f90 @@ -93,7 +93,11 @@ subroutine psb_cdprt(iout,desc_p,glob,short, verbosity) if (me == i) then write(iout,*) me,': Local descriptor data: points:',local_points,& & ' halo:',local_halo - write(iout,*) me,': Volume to surface ratio:',real(local_points,psb_dpk_)/real(local_halo,psb_dpk_) + if (local_halo>0) then + write(iout,*) me,': Volume to surface ratio:',real(local_points,psb_dpk_)/real(local_halo,psb_dpk_) + else + write(iout,*) me,': Volume to surface ratio:',0.0_psb_dpk_ + end if end if call psb_barrier(ictxt) end do diff --git a/cbind/base/psb_c_base.h b/cbind/base/psb_c_base.h index 90bc6b02f..055283b41 100644 --- a/cbind/base/psb_c_base.h +++ b/cbind/base/psb_c_base.h @@ -1,3 +1,4 @@ + #ifndef PSB_C_BASE__ #define PSB_C_BASE__ #ifdef __cplusplus diff --git a/cbind/prec/psb_c_cprec.h b/cbind/prec/psb_c_cprec.h index b840c6f08..452f1c035 100644 --- a/cbind/prec/psb_c_cprec.h +++ b/cbind/prec/psb_c_cprec.h @@ -8,15 +8,15 @@ extern "C" { #endif -typedef struct PSB_C_CPREC { - void *cprec; -} psb_c_cprec; - -psb_c_cprec* psb_c_new_cprec(); - -psb_i_t psb_c_cprecinit(psb_c_cprec *ph, const char *ptype); -psb_i_t psb_c_cprecbld(psb_c_cspmat *ah, psb_c_descriptor *cdh, psb_c_cprec *ph); -psb_i_t psb_c_cprecfree(psb_c_cprec *ph); + typedef struct PSB_C_CPREC { + void *cprec; + } psb_c_cprec; + + psb_c_cprec* psb_c_new_cprec(); + + psb_i_t psb_c_cprecinit(psb_i_t ictxt,psb_c_cprec *ph, const char *ptype); + psb_i_t psb_c_cprecbld(psb_c_cspmat *ah, psb_c_descriptor *cdh, psb_c_cprec *ph); + psb_i_t psb_c_cprecfree(psb_c_cprec *ph); #ifdef __cplusplus } #endif diff --git a/cbind/prec/psb_c_dprec.h b/cbind/prec/psb_c_dprec.h index fa16247e1..90ab72e69 100644 --- a/cbind/prec/psb_c_dprec.h +++ b/cbind/prec/psb_c_dprec.h @@ -8,15 +8,15 @@ extern "C" { #endif -typedef struct PSB_C_DPREC { - void *dprec; -} psb_c_dprec; - -psb_c_dprec* psb_c_new_dprec(); - -psb_i_t psb_c_dprecinit(psb_c_dprec *ph, const char *ptype); -psb_i_t psb_c_dprecbld(psb_c_dspmat *ah, psb_c_descriptor *cdh, psb_c_dprec *ph); -psb_i_t psb_c_dprecfree(psb_c_dprec *ph); + typedef struct PSB_C_DPREC { + void *dprec; + } psb_c_dprec; + + psb_c_dprec* psb_c_new_dprec(); + + psb_i_t psb_c_dprecinit(psb_i_t ictxt, psb_c_dprec *ph, const char *ptype); + psb_i_t psb_c_dprecbld(psb_c_dspmat *ah, psb_c_descriptor *cdh, psb_c_dprec *ph); + psb_i_t psb_c_dprecfree(psb_c_dprec *ph); #ifdef __cplusplus } #endif diff --git a/cbind/prec/psb_c_sprec.h b/cbind/prec/psb_c_sprec.h index cfad99bb0..57d66c013 100644 --- a/cbind/prec/psb_c_sprec.h +++ b/cbind/prec/psb_c_sprec.h @@ -8,15 +8,15 @@ extern "C" { #endif -typedef struct PSB_C_SPREC { - void *sprec; -} psb_c_sprec; - -psb_c_sprec* psb_c_new_sprec(); - -psb_i_t psb_c_sprecinit(psb_c_sprec *ph, const char *ptype); -psb_i_t psb_c_sprecbld(psb_c_sspmat *ah, psb_c_descriptor *cdh, psb_c_sprec *ph); -psb_i_t psb_c_sprecfree(psb_c_sprec *ph); + typedef struct PSB_C_SPREC { + void *sprec; + } psb_c_sprec; + + psb_c_sprec* psb_c_new_sprec(); + + psb_i_t psb_c_sprecinit(psb_i_t ictxt, psb_c_sprec *ph, const char *ptype); + psb_i_t psb_c_sprecbld(psb_c_sspmat *ah, psb_c_descriptor *cdh, psb_c_sprec *ph); + psb_i_t psb_c_sprecfree(psb_c_sprec *ph); #ifdef __cplusplus } #endif diff --git a/cbind/prec/psb_c_zprec.h b/cbind/prec/psb_c_zprec.h index eebe8e087..f86e3844f 100644 --- a/cbind/prec/psb_c_zprec.h +++ b/cbind/prec/psb_c_zprec.h @@ -8,15 +8,15 @@ extern "C" { #endif -typedef struct PSB_C_ZPREC { - void *zprec; -} psb_c_zprec; - -psb_c_zprec* psb_c_new_zprec(); - -psb_i_t psb_c_zprecinit(psb_c_zprec *ph, const char *ptype); -psb_i_t psb_c_zprecbld(psb_c_zspmat *ah, psb_c_descriptor *cdh, psb_c_zprec *ph); -psb_i_t psb_c_zprecfree(psb_c_zprec *ph); + typedef struct PSB_C_ZPREC { + void *zprec; + } psb_c_zprec; + + psb_c_zprec* psb_c_new_zprec(); + + psb_i_t psb_c_zprecinit(psb_i_t ictxt, psb_c_zprec *ph, const char *ptype); + psb_i_t psb_c_zprecbld(psb_c_zspmat *ah, psb_c_descriptor *cdh, psb_c_zprec *ph); + psb_i_t psb_c_zprecfree(psb_c_zprec *ph); #ifdef __cplusplus } #endif diff --git a/cbind/test/pargen/ppdec.c b/cbind/test/pargen/ppdec.c index 88e9d9447..b4eda195e 100644 --- a/cbind/test/pargen/ppdec.c +++ b/cbind/test/pargen/ppdec.c @@ -326,7 +326,7 @@ int main(int argc, char *argv[]) psb_c_barrier(ictxt); /* Set up the preconditioner */ ph = psb_c_new_dprec(); - psb_c_dprecinit(ph,ptype); + psb_c_dprecinit(ictxt,ph,ptype); ret=psb_c_dprecbld(ah,cdh,ph); //fprintf(stderr,"From psb_c_dprecbld: %d\n",ret); diff --git a/configure b/configure index 4da2e9cc4..ea3da3d44 100755 --- a/configure +++ b/configure @@ -3929,7 +3929,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu if test "X$MPICC" = "X" ; then # This is our MPICC compiler preference: it will override ACX_MPI's first try. - for ac_prog in mpxlc mpcc mpiicc mpicc cc + for ac_prog in mpxlc mpiicc mpcc mpicc cc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -6541,8 +6541,8 @@ if test "X$FCOPT" == "X" ; then FCOPT="-g -O3 $FCOPT" elif test "X$psblas_cv_fc" == X"xlf" ; then # XL compiler : consider using -qarch=auto - FCOPT="-O3 -qarch=auto -qfixed -qsuffix=f=f:cpp=F -qlanglvl=extended $FCOPT" - FCFLAGS="-qhalt=e $FCFLAGS" + FCOPT="-O3 -qarch=auto -qlanglvl=extended -qxlf2003=polymorphic:autorealloc $FCOPT" + FCFLAGS="-qhalt=e -qlanglvl=extended -qxlf2003=polymorphic:autorealloc $FCFLAGS" elif test "X$psblas_cv_fc" == X"ifc" ; then # other compilers .. FCOPT="-O3 $FCOPT" diff --git a/configure.ac b/configure.ac index 90241abed..b373eea5d 100755 --- a/configure.ac +++ b/configure.ac @@ -144,7 +144,7 @@ else AC_LANG([C]) if test "X$MPICC" = "X" ; then # This is our MPICC compiler preference: it will override ACX_MPI's first try. - AC_CHECK_PROGS([MPICC],[mpxlc mpcc mpiicc mpicc cc]) + AC_CHECK_PROGS([MPICC],[mpxlc mpiicc mpcc mpicc cc]) fi ACX_MPI([], [AC_MSG_ERROR([[Cannot find any suitable MPI implementation for C]])]) AC_PROG_CC_STDC @@ -380,8 +380,8 @@ if test "X$FCOPT" == "X" ; then FCOPT="-g -O3 $FCOPT" elif test "X$psblas_cv_fc" == X"xlf" ; then # XL compiler : consider using -qarch=auto - FCOPT="-O3 -qarch=auto -qfixed -qsuffix=f=f:cpp=F -qlanglvl=extended $FCOPT" - FCFLAGS="-qhalt=e $FCFLAGS" + FCOPT="-O3 -qarch=auto -qlanglvl=extended -qxlf2003=polymorphic:autorealloc $FCOPT" + FCFLAGS="-qhalt=e -qlanglvl=extended -qxlf2003=polymorphic:autorealloc $FCFLAGS" elif test "X$psblas_cv_fc" == X"ifc" ; then # other compilers .. FCOPT="-O3 $FCOPT" diff --git a/docs/html/footnode.html b/docs/html/footnode.html index 0ac21fab5..31eb52aac 100644 --- a/docs/html/footnode.html +++ b/docs/html/footnode.html @@ -14,7 +14,7 @@ - + @@ -137,8 +137,8 @@ sample scatter/gather routines. . -
. @@ -173,12 +173,12 @@ sample scatter/gather routines. .
. diff --git a/docs/html/img1.png b/docs/html/img1.png index 2ac27f961..adecd9a93 100644 Binary files a/docs/html/img1.png and b/docs/html/img1.png differ diff --git a/docs/html/img10.png b/docs/html/img10.png index 41dbbad67..c2ac54166 100644 Binary files a/docs/html/img10.png and b/docs/html/img10.png differ diff --git a/docs/html/img100.png b/docs/html/img100.png index 2f140eb12..1ef36aeed 100644 Binary files a/docs/html/img100.png and b/docs/html/img100.png differ diff --git a/docs/html/img101.png b/docs/html/img101.png index 66bf5520f..c34043313 100644 Binary files a/docs/html/img101.png and b/docs/html/img101.png differ diff --git a/docs/html/img102.png b/docs/html/img102.png index bd84d15a1..fd8d04a98 100644 Binary files a/docs/html/img102.png and b/docs/html/img102.png differ diff --git a/docs/html/img103.png b/docs/html/img103.png index 6c716f7e4..b01b2a872 100644 Binary files a/docs/html/img103.png and b/docs/html/img103.png differ diff --git a/docs/html/img104.png b/docs/html/img104.png index 660cca8c7..a27aae590 100644 Binary files a/docs/html/img104.png and b/docs/html/img104.png differ diff --git a/docs/html/img105.png b/docs/html/img105.png index 1aaed1e97..0ebaea73c 100644 Binary files a/docs/html/img105.png and b/docs/html/img105.png differ diff --git a/docs/html/img106.png b/docs/html/img106.png index 583cb4843..838f753bf 100644 Binary files a/docs/html/img106.png and b/docs/html/img106.png differ diff --git a/docs/html/img107.png b/docs/html/img107.png index ea78705b7..91be9c994 100644 Binary files a/docs/html/img107.png and b/docs/html/img107.png differ diff --git a/docs/html/img108.png b/docs/html/img108.png index 74f211e1e..bd8bc58dd 100644 Binary files a/docs/html/img108.png and b/docs/html/img108.png differ diff --git a/docs/html/img109.png b/docs/html/img109.png index 5e9904d55..23cab561d 100644 Binary files a/docs/html/img109.png and b/docs/html/img109.png differ diff --git a/docs/html/img11.png b/docs/html/img11.png index 31bd2fc6e..c7890370b 100644 Binary files a/docs/html/img11.png and b/docs/html/img11.png differ diff --git a/docs/html/img110.png b/docs/html/img110.png index fdfd3db7a..a9bd3c923 100644 Binary files a/docs/html/img110.png and b/docs/html/img110.png differ diff --git a/docs/html/img111.png b/docs/html/img111.png index 76e4d307e..c04546910 100644 Binary files a/docs/html/img111.png and b/docs/html/img111.png differ diff --git a/docs/html/img112.png b/docs/html/img112.png index 4c5591100..854b45831 100644 Binary files a/docs/html/img112.png and b/docs/html/img112.png differ diff --git a/docs/html/img113.png b/docs/html/img113.png index 8e8e8c7b6..06335d833 100644 Binary files a/docs/html/img113.png and b/docs/html/img113.png differ diff --git a/docs/html/img114.png b/docs/html/img114.png index 56826b8bf..5464f3643 100644 Binary files a/docs/html/img114.png and b/docs/html/img114.png differ diff --git a/docs/html/img115.png b/docs/html/img115.png index e205726f7..48c59ca4e 100644 Binary files a/docs/html/img115.png and b/docs/html/img115.png differ diff --git a/docs/html/img116.png b/docs/html/img116.png index 0df61bc18..98eb28ffd 100644 Binary files a/docs/html/img116.png and b/docs/html/img116.png differ diff --git a/docs/html/img117.png b/docs/html/img117.png index dabbe84db..507a235c5 100644 Binary files a/docs/html/img117.png and b/docs/html/img117.png differ diff --git a/docs/html/img118.png b/docs/html/img118.png index 8164fce6b..40fe13030 100644 Binary files a/docs/html/img118.png and b/docs/html/img118.png differ diff --git a/docs/html/img119.png b/docs/html/img119.png index 8ae7e6e58..12d6772d4 100644 Binary files a/docs/html/img119.png and b/docs/html/img119.png differ diff --git a/docs/html/img12.png b/docs/html/img12.png index ca3ebaf2b..ad89ebc9b 100644 Binary files a/docs/html/img12.png and b/docs/html/img12.png differ diff --git a/docs/html/img120.png b/docs/html/img120.png index 03e5d0350..9150c190a 100644 Binary files a/docs/html/img120.png and b/docs/html/img120.png differ diff --git a/docs/html/img121.png b/docs/html/img121.png index 84c60af3d..b95dedcd3 100644 Binary files a/docs/html/img121.png and b/docs/html/img121.png differ diff --git a/docs/html/img122.png b/docs/html/img122.png index 8aa2fd479..007fd66dd 100644 Binary files a/docs/html/img122.png and b/docs/html/img122.png differ diff --git a/docs/html/img123.png b/docs/html/img123.png index 8c725ced5..cb5abc277 100644 Binary files a/docs/html/img123.png and b/docs/html/img123.png differ diff --git a/docs/html/img124.png b/docs/html/img124.png index 31abeeb76..7ae488a25 100644 Binary files a/docs/html/img124.png and b/docs/html/img124.png differ diff --git a/docs/html/img125.png b/docs/html/img125.png index 8fbf5a93f..d092d123c 100644 Binary files a/docs/html/img125.png and b/docs/html/img125.png differ diff --git a/docs/html/img126.png b/docs/html/img126.png index ae2386e3f..92635fe32 100644 Binary files a/docs/html/img126.png and b/docs/html/img126.png differ diff --git a/docs/html/img127.png b/docs/html/img127.png index af2771c5f..c3cf5502d 100644 Binary files a/docs/html/img127.png and b/docs/html/img127.png differ diff --git a/docs/html/img128.png b/docs/html/img128.png index c6cc0692a..0b6d49133 100644 Binary files a/docs/html/img128.png and b/docs/html/img128.png differ diff --git a/docs/html/img129.png b/docs/html/img129.png index 28bf892de..46461b49b 100644 Binary files a/docs/html/img129.png and b/docs/html/img129.png differ diff --git a/docs/html/img13.png b/docs/html/img13.png index e55068840..a0b3f9af8 100644 Binary files a/docs/html/img13.png and b/docs/html/img13.png differ diff --git a/docs/html/img130.png b/docs/html/img130.png index 69fa8cc71..0aa677906 100644 Binary files a/docs/html/img130.png and b/docs/html/img130.png differ diff --git a/docs/html/img131.png b/docs/html/img131.png index 0d2507d5d..9aacb9c08 100644 Binary files a/docs/html/img131.png and b/docs/html/img131.png differ diff --git a/docs/html/img132.png b/docs/html/img132.png index f659c90c4..d399e8a8b 100644 Binary files a/docs/html/img132.png and b/docs/html/img132.png differ diff --git a/docs/html/img133.png b/docs/html/img133.png index a27b20f0d..390bbbfd3 100644 Binary files a/docs/html/img133.png and b/docs/html/img133.png differ diff --git a/docs/html/img134.png b/docs/html/img134.png index 340d7fef9..263977f83 100644 Binary files a/docs/html/img134.png and b/docs/html/img134.png differ diff --git a/docs/html/img135.png b/docs/html/img135.png index bab3df0ab..fe6f7a062 100644 Binary files a/docs/html/img135.png and b/docs/html/img135.png differ diff --git a/docs/html/img136.png b/docs/html/img136.png index 3df4bd775..6d6ad4dc8 100644 Binary files a/docs/html/img136.png and b/docs/html/img136.png differ diff --git a/docs/html/img137.png b/docs/html/img137.png index 151cb99de..cab8aa5ca 100644 Binary files a/docs/html/img137.png and b/docs/html/img137.png differ diff --git a/docs/html/img138.png b/docs/html/img138.png index 18cdc9576..bf7ff88aa 100644 Binary files a/docs/html/img138.png and b/docs/html/img138.png differ diff --git a/docs/html/img139.png b/docs/html/img139.png index a83c2523b..4693b8e7f 100644 Binary files a/docs/html/img139.png and b/docs/html/img139.png differ diff --git a/docs/html/img14.png b/docs/html/img14.png index c2806ce03..2e781c9ef 100644 Binary files a/docs/html/img14.png and b/docs/html/img14.png differ diff --git a/docs/html/img140.png b/docs/html/img140.png index 1c151bf2d..e84684c82 100644 Binary files a/docs/html/img140.png and b/docs/html/img140.png differ diff --git a/docs/html/img141.png b/docs/html/img141.png index e69de29bb..c0da71cac 100644 Binary files a/docs/html/img141.png and b/docs/html/img141.png differ diff --git a/docs/html/img142.png b/docs/html/img142.png index 2c8c4c596..67d62977e 100644 Binary files a/docs/html/img142.png and b/docs/html/img142.png differ diff --git a/docs/html/img143.png b/docs/html/img143.png index e69de29bb..474620ca0 100644 Binary files a/docs/html/img143.png and b/docs/html/img143.png differ diff --git a/docs/html/img144.png b/docs/html/img144.png index 1b52ccb2f..b08a5052e 100644 Binary files a/docs/html/img144.png and b/docs/html/img144.png differ diff --git a/docs/html/img145.png b/docs/html/img145.png index 4ebd6836c..dbe16817b 100644 Binary files a/docs/html/img145.png and b/docs/html/img145.png differ diff --git a/docs/html/img146.png b/docs/html/img146.png index f241006d2..d4ea028e5 100644 Binary files a/docs/html/img146.png and b/docs/html/img146.png differ diff --git a/docs/html/img147.png b/docs/html/img147.png index 55f17c1ae..e69de29bb 100644 Binary files a/docs/html/img147.png and b/docs/html/img147.png differ diff --git a/docs/html/img148.png b/docs/html/img148.png index 4aecd5d28..112296d4f 100644 Binary files a/docs/html/img148.png and b/docs/html/img148.png differ diff --git a/docs/html/img149.png b/docs/html/img149.png index bf808fd41..e69de29bb 100644 Binary files a/docs/html/img149.png and b/docs/html/img149.png differ diff --git a/docs/html/img15.png b/docs/html/img15.png index d9af05b2e..e10abf3e5 100644 Binary files a/docs/html/img15.png and b/docs/html/img15.png differ diff --git a/docs/html/img150.png b/docs/html/img150.png index 3b42a1100..179fdebe3 100644 Binary files a/docs/html/img150.png and b/docs/html/img150.png differ diff --git a/docs/html/img151.png b/docs/html/img151.png index 28c318222..68d7dad64 100644 Binary files a/docs/html/img151.png and b/docs/html/img151.png differ diff --git a/docs/html/img152.png b/docs/html/img152.png index 24fb58dcc..a4fcfdb60 100644 Binary files a/docs/html/img152.png and b/docs/html/img152.png differ diff --git a/docs/html/img153.png b/docs/html/img153.png index 73fe83b67..65884dac7 100644 Binary files a/docs/html/img153.png and b/docs/html/img153.png differ diff --git a/docs/html/img154.png b/docs/html/img154.png index 4258bbd4e..28f2efa46 100644 Binary files a/docs/html/img154.png and b/docs/html/img154.png differ diff --git a/docs/html/img155.png b/docs/html/img155.png index e3a508d59..03032423a 100644 Binary files a/docs/html/img155.png and b/docs/html/img155.png differ diff --git a/docs/html/img156.png b/docs/html/img156.png index 0c441a440..78fa2af2f 100644 Binary files a/docs/html/img156.png and b/docs/html/img156.png differ diff --git a/docs/html/img157.png b/docs/html/img157.png index 2d35de54e..34b8379bc 100644 Binary files a/docs/html/img157.png and b/docs/html/img157.png differ diff --git a/docs/html/img158.png b/docs/html/img158.png index 86ab15907..553b70789 100644 Binary files a/docs/html/img158.png and b/docs/html/img158.png differ diff --git a/docs/html/img159.png b/docs/html/img159.png index deb372811..5f6e35bb6 100644 Binary files a/docs/html/img159.png and b/docs/html/img159.png differ diff --git a/docs/html/img16.png b/docs/html/img16.png index 915462337..a3e1ae042 100644 Binary files a/docs/html/img16.png and b/docs/html/img16.png differ diff --git a/docs/html/img160.png b/docs/html/img160.png index cbcd17262..a08696b3b 100644 Binary files a/docs/html/img160.png and b/docs/html/img160.png differ diff --git a/docs/html/img161.png b/docs/html/img161.png index 881b68af7..6b888150f 100644 Binary files a/docs/html/img161.png and b/docs/html/img161.png differ diff --git a/docs/html/img162.png b/docs/html/img162.png index e803c8349..f5b40fbc4 100644 Binary files a/docs/html/img162.png and b/docs/html/img162.png differ diff --git a/docs/html/img163.png b/docs/html/img163.png index 62a4ace0b..50f198fd1 100644 Binary files a/docs/html/img163.png and b/docs/html/img163.png differ diff --git a/docs/html/img164.png b/docs/html/img164.png index 7fdc87eae..714e485f3 100644 Binary files a/docs/html/img164.png and b/docs/html/img164.png differ diff --git a/docs/html/img165.png b/docs/html/img165.png index 432e95403..4432b117d 100644 Binary files a/docs/html/img165.png and b/docs/html/img165.png differ diff --git a/docs/html/img166.png b/docs/html/img166.png index c8ef97d9d..1f5a59e6b 100644 Binary files a/docs/html/img166.png and b/docs/html/img166.png differ diff --git a/docs/html/img167.png b/docs/html/img167.png index 3f1341122..6f5a165a0 100644 Binary files a/docs/html/img167.png and b/docs/html/img167.png differ diff --git a/docs/html/img168.png b/docs/html/img168.png index 16fe2160e..bf3174bf1 100644 Binary files a/docs/html/img168.png and b/docs/html/img168.png differ diff --git a/docs/html/img17.png b/docs/html/img17.png index a16d6eb65..42a21d068 100644 Binary files a/docs/html/img17.png and b/docs/html/img17.png differ diff --git a/docs/html/img18.png b/docs/html/img18.png index a1c96ad53..b0696535b 100644 Binary files a/docs/html/img18.png and b/docs/html/img18.png differ diff --git a/docs/html/img19.png b/docs/html/img19.png index d0e22d1f1..9c4d9c8b3 100644 Binary files a/docs/html/img19.png and b/docs/html/img19.png differ diff --git a/docs/html/img2.png b/docs/html/img2.png index ce374483e..7e4485633 100644 Binary files a/docs/html/img2.png and b/docs/html/img2.png differ diff --git a/docs/html/img20.png b/docs/html/img20.png index ba7446cb9..bcd757bcd 100644 Binary files a/docs/html/img20.png and b/docs/html/img20.png differ diff --git a/docs/html/img21.png b/docs/html/img21.png index 5211fce19..f2566331e 100644 Binary files a/docs/html/img21.png and b/docs/html/img21.png differ diff --git a/docs/html/img22.png b/docs/html/img22.png index 6a7336dd7..a12cbab4b 100644 Binary files a/docs/html/img22.png and b/docs/html/img22.png differ diff --git a/docs/html/img23.png b/docs/html/img23.png index 8820cddea..8faf23ee2 100644 Binary files a/docs/html/img23.png and b/docs/html/img23.png differ diff --git a/docs/html/img24.png b/docs/html/img24.png index 87dfb3617..45001db34 100644 Binary files a/docs/html/img24.png and b/docs/html/img24.png differ diff --git a/docs/html/img25.png b/docs/html/img25.png index 455f551f9..53c3a9f78 100644 Binary files a/docs/html/img25.png and b/docs/html/img25.png differ diff --git a/docs/html/img26.png b/docs/html/img26.png index 7bb6f1e14..99fa30f28 100644 Binary files a/docs/html/img26.png and b/docs/html/img26.png differ diff --git a/docs/html/img27.png b/docs/html/img27.png index b88bda23b..1e72eec97 100644 Binary files a/docs/html/img27.png and b/docs/html/img27.png differ diff --git a/docs/html/img28.png b/docs/html/img28.png index f23c984b9..35261bbcd 100644 Binary files a/docs/html/img28.png and b/docs/html/img28.png differ diff --git a/docs/html/img29.png b/docs/html/img29.png index 99af123df..77e1e3d3d 100644 Binary files a/docs/html/img29.png and b/docs/html/img29.png differ diff --git a/docs/html/img3.png b/docs/html/img3.png index 869e09eb2..0437386d2 100644 Binary files a/docs/html/img3.png and b/docs/html/img3.png differ diff --git a/docs/html/img30.png b/docs/html/img30.png index 7dc6af59e..37198e4ac 100644 Binary files a/docs/html/img30.png and b/docs/html/img30.png differ diff --git a/docs/html/img31.png b/docs/html/img31.png index dbad67a81..04db189a8 100644 Binary files a/docs/html/img31.png and b/docs/html/img31.png differ diff --git a/docs/html/img32.png b/docs/html/img32.png index 75e66a30e..33c173d64 100644 Binary files a/docs/html/img32.png and b/docs/html/img32.png differ diff --git a/docs/html/img33.png b/docs/html/img33.png index 9fb422bb5..8401b9de5 100644 Binary files a/docs/html/img33.png and b/docs/html/img33.png differ diff --git a/docs/html/img34.png b/docs/html/img34.png index 8300ccd37..de4be8d17 100644 Binary files a/docs/html/img34.png and b/docs/html/img34.png differ diff --git a/docs/html/img35.png b/docs/html/img35.png index 8dc1fd2cc..5c126725c 100644 Binary files a/docs/html/img35.png and b/docs/html/img35.png differ diff --git a/docs/html/img36.png b/docs/html/img36.png index 59d959e7e..2d75ebf78 100644 Binary files a/docs/html/img36.png and b/docs/html/img36.png differ diff --git a/docs/html/img37.png b/docs/html/img37.png index 968693e7f..cd92a73ed 100644 Binary files a/docs/html/img37.png and b/docs/html/img37.png differ diff --git a/docs/html/img38.png b/docs/html/img38.png index ebe6487d6..7c5029116 100644 Binary files a/docs/html/img38.png and b/docs/html/img38.png differ diff --git a/docs/html/img39.png b/docs/html/img39.png index c0fb480ac..024267fb6 100644 Binary files a/docs/html/img39.png and b/docs/html/img39.png differ diff --git a/docs/html/img4.png b/docs/html/img4.png index 587ad0cb6..98ca993f8 100644 Binary files a/docs/html/img4.png and b/docs/html/img4.png differ diff --git a/docs/html/img40.png b/docs/html/img40.png index b270dba97..b026c00d6 100644 Binary files a/docs/html/img40.png and b/docs/html/img40.png differ diff --git a/docs/html/img41.png b/docs/html/img41.png index 0d8a92b1e..7dcd1938b 100644 Binary files a/docs/html/img41.png and b/docs/html/img41.png differ diff --git a/docs/html/img42.png b/docs/html/img42.png index dfafa7c95..9a59ca922 100644 Binary files a/docs/html/img42.png and b/docs/html/img42.png differ diff --git a/docs/html/img43.png b/docs/html/img43.png index 571e8fe6d..16d677a24 100644 Binary files a/docs/html/img43.png and b/docs/html/img43.png differ diff --git a/docs/html/img44.png b/docs/html/img44.png index ffc914618..2e1dbeecd 100644 Binary files a/docs/html/img44.png and b/docs/html/img44.png differ diff --git a/docs/html/img45.png b/docs/html/img45.png index 92a764237..5d9ab0004 100644 Binary files a/docs/html/img45.png and b/docs/html/img45.png differ diff --git a/docs/html/img46.png b/docs/html/img46.png index 5dcfb65a8..8d180c6f7 100644 Binary files a/docs/html/img46.png and b/docs/html/img46.png differ diff --git a/docs/html/img47.png b/docs/html/img47.png index f6335409c..ee03ba889 100644 Binary files a/docs/html/img47.png and b/docs/html/img47.png differ diff --git a/docs/html/img48.png b/docs/html/img48.png index 5c5623315..749f57b78 100644 Binary files a/docs/html/img48.png and b/docs/html/img48.png differ diff --git a/docs/html/img49.png b/docs/html/img49.png index be2cba0ea..4df8b5ed2 100644 Binary files a/docs/html/img49.png and b/docs/html/img49.png differ diff --git a/docs/html/img5.png b/docs/html/img5.png index 896089883..c7e3b8691 100644 Binary files a/docs/html/img5.png and b/docs/html/img5.png differ diff --git a/docs/html/img50.png b/docs/html/img50.png index d8ade4751..5c67dec4c 100644 Binary files a/docs/html/img50.png and b/docs/html/img50.png differ diff --git a/docs/html/img51.png b/docs/html/img51.png index 0b94ce1bb..95e38d985 100644 Binary files a/docs/html/img51.png and b/docs/html/img51.png differ diff --git a/docs/html/img52.png b/docs/html/img52.png index 38055651c..de3b1224f 100644 Binary files a/docs/html/img52.png and b/docs/html/img52.png differ diff --git a/docs/html/img53.png b/docs/html/img53.png index bbdf4b883..08f6c67bb 100644 Binary files a/docs/html/img53.png and b/docs/html/img53.png differ diff --git a/docs/html/img54.png b/docs/html/img54.png index 2cb46436b..a74e0343c 100644 Binary files a/docs/html/img54.png and b/docs/html/img54.png differ diff --git a/docs/html/img55.png b/docs/html/img55.png index 0896a6f55..4c3c8957b 100644 Binary files a/docs/html/img55.png and b/docs/html/img55.png differ diff --git a/docs/html/img56.png b/docs/html/img56.png index 31482d5d5..305f7e0a3 100644 Binary files a/docs/html/img56.png and b/docs/html/img56.png differ diff --git a/docs/html/img57.png b/docs/html/img57.png index add7a3da1..2491b4cab 100644 Binary files a/docs/html/img57.png and b/docs/html/img57.png differ diff --git a/docs/html/img58.png b/docs/html/img58.png index 9c888139b..4faf223b2 100644 Binary files a/docs/html/img58.png and b/docs/html/img58.png differ diff --git a/docs/html/img59.png b/docs/html/img59.png index 4626cda84..56ad2960e 100644 Binary files a/docs/html/img59.png and b/docs/html/img59.png differ diff --git a/docs/html/img6.png b/docs/html/img6.png index d96fe9634..054a6f2c1 100644 Binary files a/docs/html/img6.png and b/docs/html/img6.png differ diff --git a/docs/html/img60.png b/docs/html/img60.png index 63497b063..084db1d93 100644 Binary files a/docs/html/img60.png and b/docs/html/img60.png differ diff --git a/docs/html/img61.png b/docs/html/img61.png index 0f08edcc6..e34ad933d 100644 Binary files a/docs/html/img61.png and b/docs/html/img61.png differ diff --git a/docs/html/img62.png b/docs/html/img62.png index 5fc286046..ad6eb72b2 100644 Binary files a/docs/html/img62.png and b/docs/html/img62.png differ diff --git a/docs/html/img63.png b/docs/html/img63.png index 0fe6d6fe0..f71d100c4 100644 Binary files a/docs/html/img63.png and b/docs/html/img63.png differ diff --git a/docs/html/img64.png b/docs/html/img64.png index 5fc286046..ef6e02647 100644 Binary files a/docs/html/img64.png and b/docs/html/img64.png differ diff --git a/docs/html/img65.png b/docs/html/img65.png index 624c6cca5..f5264e6fb 100644 Binary files a/docs/html/img65.png and b/docs/html/img65.png differ diff --git a/docs/html/img66.png b/docs/html/img66.png index 2539460aa..9baf2677c 100644 Binary files a/docs/html/img66.png and b/docs/html/img66.png differ diff --git a/docs/html/img67.png b/docs/html/img67.png index 36fe0d5b9..45d906635 100644 Binary files a/docs/html/img67.png and b/docs/html/img67.png differ diff --git a/docs/html/img68.png b/docs/html/img68.png index f75a73196..9baf2677c 100644 Binary files a/docs/html/img68.png and b/docs/html/img68.png differ diff --git a/docs/html/img69.png b/docs/html/img69.png index 6cc3ae5c5..4ed82afce 100644 Binary files a/docs/html/img69.png and b/docs/html/img69.png differ diff --git a/docs/html/img7.png b/docs/html/img7.png index a26eabf7f..17651c679 100644 Binary files a/docs/html/img7.png and b/docs/html/img7.png differ diff --git a/docs/html/img70.png b/docs/html/img70.png index 90e36a4d7..c98687d33 100644 Binary files a/docs/html/img70.png and b/docs/html/img70.png differ diff --git a/docs/html/img71.png b/docs/html/img71.png index fed43124d..9eab93e3b 100644 Binary files a/docs/html/img71.png and b/docs/html/img71.png differ diff --git a/docs/html/img72.png b/docs/html/img72.png index 334a44a7f..e02dbc45c 100644 Binary files a/docs/html/img72.png and b/docs/html/img72.png differ diff --git a/docs/html/img73.png b/docs/html/img73.png index 650cef038..82b032175 100644 Binary files a/docs/html/img73.png and b/docs/html/img73.png differ diff --git a/docs/html/img74.png b/docs/html/img74.png index c3fd2d55f..013b63a61 100644 Binary files a/docs/html/img74.png and b/docs/html/img74.png differ diff --git a/docs/html/img75.png b/docs/html/img75.png index 9057bcf5a..5a8836737 100644 Binary files a/docs/html/img75.png and b/docs/html/img75.png differ diff --git a/docs/html/img76.png b/docs/html/img76.png index 5a0d1ca44..a9ac50d15 100644 Binary files a/docs/html/img76.png and b/docs/html/img76.png differ diff --git a/docs/html/img77.png b/docs/html/img77.png index 6619889af..8cb5d7f9b 100644 Binary files a/docs/html/img77.png and b/docs/html/img77.png differ diff --git a/docs/html/img78.png b/docs/html/img78.png index 44cbaea8f..9e8ee5677 100644 Binary files a/docs/html/img78.png and b/docs/html/img78.png differ diff --git a/docs/html/img79.png b/docs/html/img79.png index 2f1e81d34..f50abc5ec 100644 Binary files a/docs/html/img79.png and b/docs/html/img79.png differ diff --git a/docs/html/img8.png b/docs/html/img8.png index d7424dc1e..7a72f7213 100644 Binary files a/docs/html/img8.png and b/docs/html/img8.png differ diff --git a/docs/html/img80.png b/docs/html/img80.png index 5246c0b88..c74aea15c 100644 Binary files a/docs/html/img80.png and b/docs/html/img80.png differ diff --git a/docs/html/img81.png b/docs/html/img81.png index 615372d43..87865247e 100644 Binary files a/docs/html/img81.png and b/docs/html/img81.png differ diff --git a/docs/html/img82.png b/docs/html/img82.png index 04513fb51..d3e98274c 100644 Binary files a/docs/html/img82.png and b/docs/html/img82.png differ diff --git a/docs/html/img83.png b/docs/html/img83.png index d280160a6..26f776652 100644 Binary files a/docs/html/img83.png and b/docs/html/img83.png differ diff --git a/docs/html/img84.png b/docs/html/img84.png index 89a30141f..7f07871f4 100644 Binary files a/docs/html/img84.png and b/docs/html/img84.png differ diff --git a/docs/html/img85.png b/docs/html/img85.png index 168fcb951..bea091585 100644 Binary files a/docs/html/img85.png and b/docs/html/img85.png differ diff --git a/docs/html/img86.png b/docs/html/img86.png index ec5fdcea1..831ec3d50 100644 Binary files a/docs/html/img86.png and b/docs/html/img86.png differ diff --git a/docs/html/img87.png b/docs/html/img87.png index 79d7ada79..75d638457 100644 Binary files a/docs/html/img87.png and b/docs/html/img87.png differ diff --git a/docs/html/img88.png b/docs/html/img88.png index 7a1571bee..3aad7e299 100644 Binary files a/docs/html/img88.png and b/docs/html/img88.png differ diff --git a/docs/html/img89.png b/docs/html/img89.png index 79cf58a60..51b526e5b 100644 Binary files a/docs/html/img89.png and b/docs/html/img89.png differ diff --git a/docs/html/img9.png b/docs/html/img9.png index 2a67babe3..2a553f85d 100644 Binary files a/docs/html/img9.png and b/docs/html/img9.png differ diff --git a/docs/html/img90.png b/docs/html/img90.png index 6d9db3033..0291e544a 100644 Binary files a/docs/html/img90.png and b/docs/html/img90.png differ diff --git a/docs/html/img91.png b/docs/html/img91.png index 48aa78e3f..b2f743858 100644 Binary files a/docs/html/img91.png and b/docs/html/img91.png differ diff --git a/docs/html/img92.png b/docs/html/img92.png index 8c52c8382..7c89824f5 100644 Binary files a/docs/html/img92.png and b/docs/html/img92.png differ diff --git a/docs/html/img93.png b/docs/html/img93.png index c4a1e7add..69717c634 100644 Binary files a/docs/html/img93.png and b/docs/html/img93.png differ diff --git a/docs/html/img94.png b/docs/html/img94.png index df9999c45..70042ad61 100644 Binary files a/docs/html/img94.png and b/docs/html/img94.png differ diff --git a/docs/html/img95.png b/docs/html/img95.png index 33d40e54d..622ea153c 100644 Binary files a/docs/html/img95.png and b/docs/html/img95.png differ diff --git a/docs/html/img96.png b/docs/html/img96.png index 89a17445a..9d69edde3 100644 Binary files a/docs/html/img96.png and b/docs/html/img96.png differ diff --git a/docs/html/img97.png b/docs/html/img97.png index f539ffeb3..8e4540d36 100644 Binary files a/docs/html/img97.png and b/docs/html/img97.png differ diff --git a/docs/html/img98.png b/docs/html/img98.png index bbb0a1c06..61323a77c 100644 Binary files a/docs/html/img98.png and b/docs/html/img98.png differ diff --git a/docs/html/img99.png b/docs/html/img99.png index b6226f3cb..f7967e007 100644 Binary files a/docs/html/img99.png and b/docs/html/img99.png differ diff --git a/docs/html/index.html b/docs/html/index.html index 782b5bce7..90ac5de27 100644 --- a/docs/html/index.html +++ b/docs/html/index.html @@ -54,7 +54,7 @@ Alfredo Buttari
Software version: 3.6.0
-Sep 1st, 2018 +Dec 1st, 2018
@@ -336,68 +336,70 @@ of a dense vector
diff --git a/docs/html/node10.html b/docs/html/node10.html index 75d95659f..ce622a010 100644 --- a/docs/html/node10.html +++ b/docs/html/node10.html @@ -23,26 +23,26 @@
@@ -195,7 +195,7 @@ Specified as: an allocatable integer array of rank two. The Fortran 2003 declaration forpsb_desc_type structures is
as follows:
-