This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
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
Fix workspace query for ?SYEVD and ?HEEVD (Reference-LAPACK PR691)
tags/v0.3.22^2
Martin Kroeker
GitHub
3 years ago
parent
eea1636380
commit
60af35bfab
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
4 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
lapack-netlib/SRC/cheevd.f
+1
-1
lapack-netlib/SRC/dsyevd.f
+1
-1
lapack-netlib/SRC/ssyevd.f
+1
-1
lapack-netlib/SRC/zheevd.f
+ 1
- 1
lapack-netlib/SRC/cheevd.f
View File
@@ -284,7 +284,7 @@
LIWMIN = 1
END IF
LOPT = MAX( LWMIN, N +
$ ILAENV( 1, 'CHETRD', UPLO, N, -1, -1, -1 ) )
$
N*
ILAENV( 1, 'CHETRD', UPLO, N, -1, -1, -1 ) )
LROPT = LRWMIN
LIOPT = LIWMIN
END IF
+ 1
- 1
lapack-netlib/SRC/dsyevd.f
View File
@@ -257,7 +257,7 @@
LWMIN = 2*N + 1
END IF
LOPT = MAX( LWMIN, 2*N +
$ ILAENV( 1, 'DSYTRD', UPLO, N, -1, -1, -1 ) )
$
N*
ILAENV( 1, 'DSYTRD', UPLO, N, -1, -1, -1 ) )
LIOPT = LIWMIN
END IF
WORK( 1 ) = LOPT
+ 1
- 1
lapack-netlib/SRC/ssyevd.f
View File
@@ -255,7 +255,7 @@
LWMIN = 2*N + 1
END IF
LOPT = MAX( LWMIN, 2*N +
$ ILAENV( 1, 'SSYTRD', UPLO, N, -1, -1, -1 ) )
$
N*
ILAENV( 1, 'SSYTRD', UPLO, N, -1, -1, -1 ) )
LIOPT = LIWMIN
END IF
WORK( 1 ) = LOPT
+ 1
- 1
lapack-netlib/SRC/zheevd.f
View File
@@ -284,7 +284,7 @@
LIWMIN = 1
END IF
LOPT = MAX( LWMIN, N +
$ ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) )
$
N*
ILAENV( 1, 'ZHETRD', UPLO, N, -1, -1, -1 ) )
LROPT = LRWMIN
LIOPT = LIWMIN
END IF
Write
Preview
Loading…
Cancel
Save