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
Initialize X and Y to zero for N=0 (Reference-LAPACK PR463)
tags/v0.3.15
Martin Kroeker
GitHub
4 years ago
parent
3a30c12019
commit
c26780d451
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
4 changed files
with
36 additions
and
8 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-2
lapack-netlib/SRC/cggglm.f
+9
-2
lapack-netlib/SRC/dggglm.f
+9
-2
lapack-netlib/SRC/sggglm.f
+9
-2
lapack-netlib/SRC/zggglm.f
+ 9
- 2
lapack-netlib/SRC/cggglm.f
View File
@@ -271,8 +271,15 @@
*
* Quick return if possible
*
IF( N.EQ.0 )
$ RETURN
IF( N.EQ.0 ) THEN
DO I = 1, M
X(I) = CZERO
END DO
DO I = 1, P
Y(I) = CZERO
END DO
RETURN
END IF
*
* Compute the GQR factorization of matrices A and B:
*
+ 9
- 2
lapack-netlib/SRC/dggglm.f
View File
@@ -270,8 +270,15 @@
*
* Quick return if possible
*
IF( N.EQ.0 )
$ RETURN
IF( N.EQ.0 ) THEN
DO I = 1, M
X(I) = ZERO
END DO
DO I = 1, P
Y(I) = ZERO
END DO
RETURN
END IF
*
* Compute the GQR factorization of matrices A and B:
*
+ 9
- 2
lapack-netlib/SRC/sggglm.f
View File
@@ -270,8 +270,15 @@
*
* Quick return if possible
*
IF( N.EQ.0 )
$ RETURN
IF( N.EQ.0 ) THEN
DO I = 1, M
X(I) = ZERO
END DO
DO I = 1, P
Y(I) = ZERO
END DO
RETURN
END IF
*
* Compute the GQR factorization of matrices A and B:
*
+ 9
- 2
lapack-netlib/SRC/zggglm.f
View File
@@ -271,8 +271,15 @@
*
* Quick return if possible
*
IF( N.EQ.0 )
$ RETURN
IF( N.EQ.0 ) THEN
DO I = 1, M
X(I) = CZERO
END DO
DO I = 1, P
Y(I) = CZERO
END DO
RETURN
END IF
*
* Compute the GQR factorization of matrices A and B:
*
Write
Preview
Loading…
Cancel
Save