summaryrefslogtreecommitdiff
path: root/LAPACKE/src/lapacke_zunbdb_work.c
AgeCommit message (Collapse)AuthorFilesLines
2017-06-10Preparing for 3.7.1 releaseJulie1-1/+1
Update version number from discussion with Vendors, they still would like to have the version number inside the source file.
2017-02-03lapacke_*(bb|or|un)(csd|bdb): forward calls to LAPACK without conversioneugene.chereshnev1-109/+23
1) Ignore TRANS parameter for LAPACKE since it has the same meaning as matrix_layout parameter. TRANS = 'T' means matrices are handled in row-major format. TRANS != 'T' means matrices are handled in col-major format. 2) So conversion from/to row-major layout can be removed in LAPACKE. All the cases can be forwarded to LAPACK calls with corresponding TRANS parameter. 3) nrows_* variables can be safely removed. NaN checkers for different TRANS values can be called with corresponding layout. LAPACKE calls are forwarded in the following way: trans != 'T', col-major: call LAPACK(trans = 'N') - col-major trans != 'T', row-major: call LAPACK(trans = 'T') - row-major trans = 'T', col-major: call LAPACK(trans = 'T') - row-major trans = 'T', row-major: call LAPACK(trans = 'T') - row-major
2015-11-15Updating version numberjulie1-1/+1
2014-10-08Fixing folder uppercase / lower case issue - Thank you Donjulie1-0/+170