This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
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
f2074f9ac1
254db9bd7c
commit
00740c0e34
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 )
Write
Preview
Loading…
Cancel
Save