Skip to content

Commit

Permalink
fix a bug in pxssvx and pxssvx_ABglobal
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyangzhuan committed Jul 9, 2024
1 parent 6d2087e commit 250e7c4
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions SRC/complex16/pzgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,7 @@ pzgssvx(superlu_dist_options_t *options, SuperMatrix *A,
#endif

LUstruct->dt = 'z';
LUstruct->trf3Dpart= NULL;

/* Structures needed for parallel symbolic factorization */
int_t *sizes, *fstVtxSep, parSymbFact;
Expand Down
1 change: 1 addition & 0 deletions SRC/complex16/pzgssvx_ABglobal.c
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ pzgssvx_ABglobal(superlu_dist_options_t *options, SuperMatrix *A,
double dmin, dsum, dprod;
#endif
LUstruct->dt = 'z';
LUstruct->trf3Dpart= NULL;

/* Test input parameters. */
*info = 0;
Expand Down
2 changes: 1 addition & 1 deletion SRC/double/pdgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ pdgssvx(superlu_dist_options_t *options, SuperMatrix *A,
#if ( PRNTlevel>= 2 )
double dmin, dsum, dprod;
#endif

LUstruct->trf3Dpart= NULL;
LUstruct->dt = 'd';

/* Structures needed for parallel symbolic factorization */
Expand Down
1 change: 1 addition & 0 deletions SRC/double/pdgssvx_ABglobal.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ pdgssvx_ABglobal(superlu_dist_options_t *options, SuperMatrix *A,
double dmin, dsum, dprod;
#endif
LUstruct->dt = 'd';
LUstruct->trf3Dpart= NULL;

/* Test input parameters. */
*info = 0;
Expand Down
1 change: 1 addition & 0 deletions SRC/single/psgssvx.c
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,7 @@ psgssvx(superlu_dist_options_t *options, SuperMatrix *A,
#endif

LUstruct->dt = 's';
LUstruct->trf3Dpart= NULL;

/* Structures needed for parallel symbolic factorization */
int_t *sizes, *fstVtxSep, parSymbFact;
Expand Down
1 change: 1 addition & 0 deletions SRC/single/psgssvx_ABglobal.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ psgssvx_ABglobal(superlu_dist_options_t *options, SuperMatrix *A,
double dmin, dsum, dprod;
#endif
LUstruct->dt = 's';
LUstruct->trf3Dpart= NULL;

/* Test input parameters. */
*info = 0;
Expand Down

0 comments on commit 250e7c4

Please sign in to comment.