Skip to content

Commit b354d10

Browse files
Remove unnecessary transposition of t_t on input
1 parent a942408 commit b354d10

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

LAPACKE/src/lapacke_cgeqrt_work.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ lapack_int LAPACKE_cgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
7676
}
7777
/* Transpose input matrices */
7878
LAPACKE_cge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
79-
LAPACKE_cge_trans( matrix_layout, nb, MIN(m,n), t, ldt, t_t, ldt_t );
8079
/* Call LAPACK function and adjust info */
8180
LAPACK_cgeqrt( &m, &n, &nb, a_t, &lda_t, t_t, &ldt_t, work, &info );
8281
if( info < 0 ) {

LAPACKE/src/lapacke_dgeqrt_work.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ lapack_int LAPACKE_dgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
7373
}
7474
/* Transpose input matrices */
7575
LAPACKE_dge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
76-
LAPACKE_dge_trans( matrix_layout, nb, MIN(m,n), t, ldt, t_t, ldt_t );
7776
/* Call LAPACK function and adjust info */
7877
LAPACK_dgeqrt( &m, &n, &nb, a_t, &lda_t, t_t, &ldt_t, work, &info );
7978
if( info < 0 ) {

LAPACKE/src/lapacke_sgeqrt_work.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ lapack_int LAPACKE_sgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
7272
}
7373
/* Transpose input matrices */
7474
LAPACKE_sge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
75-
LAPACKE_sge_trans( matrix_layout, nb, MIN(m,n), t, ldt, t_t, ldt_t );
7675
/* Call LAPACK function and adjust info */
7776
LAPACK_sgeqrt( &m, &n, &nb, a_t, &lda_t, t_t, &ldt_t, work, &info );
7877
if( info < 0 ) {

LAPACKE/src/lapacke_zgeqrt_work.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ lapack_int LAPACKE_zgeqrt_work( int matrix_layout, lapack_int m, lapack_int n,
7676
}
7777
/* Transpose input matrices */
7878
LAPACKE_zge_trans( matrix_layout, m, n, a, lda, a_t, lda_t );
79-
LAPACKE_zge_trans( matrix_layout, nb, MIN(m,n), t, ldt, t_t, ldt_t );
8079
/* Call LAPACK function and adjust info */
8180
LAPACK_zgeqrt( &m, &n, &nb, a_t, &lda_t, t_t, &ldt_t, work, &info );
8281
if( info < 0 ) {

0 commit comments

Comments
 (0)