Skip to content

Commit 9f4b5d2

Browse files
Merge pull request #768 from sbite0138/fix-766
Thanks @sbite0138 !!
2 parents dfad0d5 + b354d10 commit 9f4b5d2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

LAPACKE/src/lapacke_cgeqrt_work.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ lapack_int LAPACKE_cgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
8383
}
8484
/* Transpose output matrices */
8585
LAPACKE_cge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
86-
LAPACKE_cge_trans( LAPACK_COL_MAJOR, ldt, MIN(m,n), t_t, ldt_t, t,
86+
LAPACKE_cge_trans( LAPACK_COL_MAJOR, nb, MIN(m,n), t_t, ldt_t, t,
8787
ldt );
8888
/* Release memory and exit */
8989
LAPACKE_free( t_t );

LAPACKE/src/lapacke_dgeqrt_work.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ lapack_int LAPACKE_dgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
8080
}
8181
/* Transpose output matrices */
8282
LAPACKE_dge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
83-
LAPACKE_dge_trans( LAPACK_COL_MAJOR, ldt, MIN(m,n), t_t, ldt_t, t,
83+
LAPACKE_dge_trans( LAPACK_COL_MAJOR, nb, MIN(m,n), t_t, ldt_t, t,
8484
ldt );
8585
/* Release memory and exit */
8686
LAPACKE_free( t_t );

LAPACKE/src/lapacke_sgeqrt_work.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ lapack_int LAPACKE_sgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
7979
}
8080
/* Transpose output matrices */
8181
LAPACKE_sge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
82-
LAPACKE_sge_trans( LAPACK_COL_MAJOR, ldt, MIN(m,n), t_t, ldt_t, t,
82+
LAPACKE_sge_trans( LAPACK_COL_MAJOR, nb, MIN(m,n), t_t, ldt_t, t,
8383
ldt );
8484
/* Release memory and exit */
8585
LAPACKE_free( t_t );

LAPACKE/src/lapacke_zgeqrt_work.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ lapack_int LAPACKE_zgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
8383
}
8484
/* Transpose output matrices */
8585
LAPACKE_zge_trans( LAPACK_COL_MAJOR, m, n, a_t, lda_t, a, lda );
86-
LAPACKE_zge_trans( LAPACK_COL_MAJOR, ldt, MIN(m,n), t_t, ldt_t, t,
86+
LAPACKE_zge_trans( LAPACK_COL_MAJOR, nb, MIN(m,n), t_t, ldt_t, t,
8787
ldt );
8888
/* Release memory and exit */
8989
LAPACKE_free( t_t );

0 commit comments

Comments
 (0)