Browse Source

Merge pull request #1290 from martin-frbg/imatcopy

Use in-place transform shortcut only if matrix is square
tags/v0.3.0
Martin Kroeker GitHub 8 years ago
parent
commit
00740c0e34
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      interface/imatcopy.c

+ 1
- 1
interface/imatcopy.c View File

@@ -121,7 +121,7 @@ void CNAME( enum CBLAS_ORDER CORDER, enum CBLAS_TRANSPOSE CTRANS, blasint crows,
return;
}
#ifdef NEW_IMATCOPY
if ( *lda == *ldb ) {
if ( *lda == *ldb && *cols == *rows ) {
if ( order == BlasColMajor )
{
if ( trans == BlasNoTrans )


Loading…
Cancel
Save