Skip to content

Commit

Permalink
Merge pull request #205 from julielangou/master
Browse files Browse the repository at this point in the history
Small Precision fix for LAPACKE Aasen 2 stage
  • Loading branch information
julielangou committed Nov 13, 2017
2 parents 03f1d35 + 2a504e9 commit 73feb93
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LAPACKE/src/lapacke_zhesv_aa_2stage_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ lapack_int LAPACKE_zhesv_aa_2stage_work( int matrix_layout, char uplo, lapack_in
}
/* Transpose output matrices */
LAPACKE_zhe_trans( LAPACK_COL_MAJOR, uplo, n, a_t, lda_t, a, lda );
LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
/* Release memory and exit */
LAPACKE_free( b_t );
exit_level_2:
Expand Down
2 changes: 1 addition & 1 deletion LAPACKE/src/lapacke_zsysv_aa_2stage_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ lapack_int LAPACKE_zsysv_aa_2stage_work( int matrix_layout, char uplo, lapack_in
}
/* Transpose output matrices */
LAPACKE_zsy_trans( LAPACK_COL_MAJOR, uplo, n, a_t, lda_t, a, lda );
LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
/* Release memory and exit */
LAPACKE_free( b_t );
exit_level_2:
Expand Down
2 changes: 1 addition & 1 deletion LAPACKE/src/lapacke_zsytrs_aa_2stage_work.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ lapack_int LAPACKE_zsytrs_aa_2stage_work( int matrix_layout, char uplo, lapack_i
}
/* Transpose output matrices */
LAPACKE_zsy_trans( LAPACK_COL_MAJOR, uplo, n, a_t, lda_t, a, lda );
LAPACKE_sge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
LAPACKE_zge_trans( LAPACK_COL_MAJOR, n, nrhs, b_t, ldb_t, b, ldb );
/* Release memory and exit */
LAPACKE_free( b_t );
exit_level_2:
Expand Down

0 comments on commit 73feb93

Please sign in to comment.