Skip to content

Commit

Permalink
Merge branch 'xiaoyeli:master' into fix/cmake-test-setup
Browse files Browse the repository at this point in the history
  • Loading branch information
wo80 authored Sep 12, 2023
2 parents 697e256 + f63265a commit 990dcdb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion SRC/cgstrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ cgstrf (superlu_options_t *options, SuperMatrix *A,
if (m > k) {
/* if k == m, then all the row permutations are complete and
we can short circuit looking through the rest of the vector */
for (i = k; i < m && k < m; ++i) {
for (i = 0; i < m && k < m; ++i) {
if (perm_r[i] == EMPTY) {
perm_r[i] = k;
++k;
Expand Down
2 changes: 1 addition & 1 deletion SRC/dgstrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ dgstrf (superlu_options_t *options, SuperMatrix *A,
if (m > k) {
/* if k == m, then all the row permutations are complete and
we can short circuit looking through the rest of the vector */
for (i = k; i < m && k < m; ++i) {
for (i = 0; i < m && k < m; ++i) {
if (perm_r[i] == EMPTY) {
perm_r[i] = k;
++k;
Expand Down
2 changes: 1 addition & 1 deletion SRC/sgstrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ sgstrf (superlu_options_t *options, SuperMatrix *A,
if (m > k) {
/* if k == m, then all the row permutations are complete and
we can short circuit looking through the rest of the vector */
for (i = k; i < m && k < m; ++i) {
for (i = 0; i < m && k < m; ++i) {
if (perm_r[i] == EMPTY) {
perm_r[i] = k;
++k;
Expand Down
2 changes: 1 addition & 1 deletion SRC/superlu_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/* #undef HAVE_COLAMD */

/* enable 64bit index mode */
#define XSDK_INDEX_SIZE 64
/* #undef XSDK_INDEX_SIZE */

/* Integer type for indexing sparse matrix meta structure */
#if (XSDK_INDEX_SIZE == 64)
Expand Down
2 changes: 1 addition & 1 deletion SRC/zgstrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ zgstrf (superlu_options_t *options, SuperMatrix *A,
if (m > k) {
/* if k == m, then all the row permutations are complete and
we can short circuit looking through the rest of the vector */
for (i = k; i < m && k < m; ++i) {
for (i = 0; i < m && k < m; ++i) {
if (perm_r[i] == EMPTY) {
perm_r[i] = k;
++k;
Expand Down

0 comments on commit 990dcdb

Please sign in to comment.