Skip to content

Commit 3b39e7f

Browse files
committed
lowered default SPIENVs
1 parent eb0febe commit 3b39e7f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Source/Modules/PARAMS.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -504,9 +504,9 @@ MODULE PARAMS
504504
INTEGER(LONG) :: F06_COL_START = 0 ! 1st col in F06 file for output data to begin. If it is not > 2, then
505505
! output will be written with each main header centered on one another
506506

507-
INTEGER(LONG) :: SPIENV6 = 100 ! Memory growth factor for SuperLU_MT -- corresponds to -sp_ienv(6)
508-
INTEGER(LONG) :: SPIENV7 = 100 ! Memory growth factor for SuperLU_MT -- corresponds to -sp_ienv(7)
509-
INTEGER(LONG) :: SPIENV8 = 50 ! Memory growth factor for SuperLU_MT -- corresponds to -sp_ienv(8)
507+
INTEGER(LONG) :: SPIENV6 = 50 ! Memory growth factor for SuperLU_MT -- corresponds to -sp_ienv(6)
508+
INTEGER(LONG) :: SPIENV7 = 50 ! Memory growth factor for SuperLU_MT -- corresponds to -sp_ienv(7)
509+
INTEGER(LONG) :: SPIENV8 = 30 ! Memory growth factor for SuperLU_MT -- corresponds to -sp_ienv(8)
510510

511511
INTEGER(LONG) :: SLU_NTHR = 0 ! Number of threads for SuperLU_MT.
512512
! Using 0 will use as many threads as the system has.

superlu_mt_patches/SRC/sp_ienv.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ at the top-level directory.
1212
#include "slu_mt_ddefs.h"
1313

1414
/* these can be set from Fortran, allowing MYSTRAN to control them at runtime */
15-
int_t param_spienv6 = 100;
16-
int_t param_spienv7 = 100;
17-
int_t param_spienv8 = 50;
15+
int_t param_spienv6 = 50;
16+
int_t param_spienv7 = 50;
17+
int_t param_spienv8 = 30;
1818

1919
/* this subroutine can be called from Fortran!
2020
* if the passed growth factor is non-zero, we set it.

0 commit comments

Comments
 (0)