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
Add quick return if scaling with one (Reference-LAPACK PR674)
tags/v0.3.22^2
Martin Kroeker
GitHub
2 years ago
parent
60af35bfab
commit
3f31b69121
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
4 changed files
with
8 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
lapack-netlib/SRC/clascl.f
+2
-0
lapack-netlib/SRC/dlascl.f
+2
-0
lapack-netlib/SRC/slascl.f
+2
-0
lapack-netlib/SRC/zlascl.f
+ 2
- 0
lapack-netlib/SRC/clascl.f
View File
@@ -272,6 +272,8 @@
ELSE
MUL = CTOC / CFROMC
DONE = .TRUE.
IF (MUL .EQ. ONE)
$ RETURN
END IF
END IF
*
+ 2
- 0
lapack-netlib/SRC/dlascl.f
View File
@@ -272,6 +272,8 @@
ELSE
MUL = CTOC / CFROMC
DONE = .TRUE.
IF (MUL .EQ. ONE)
$ RETURN
END IF
END IF
*
+ 2
- 0
lapack-netlib/SRC/slascl.f
View File
@@ -272,6 +272,8 @@
ELSE
MUL = CTOC / CFROMC
DONE = .TRUE.
IF (MUL .EQ. ONE)
$ RETURN
END IF
END IF
*
+ 2
- 0
lapack-netlib/SRC/zlascl.f
View File
@@ -272,6 +272,8 @@
ELSE
MUL = CTOC / CFROMC
DONE = .TRUE.
IF (MUL .EQ. ONE)
$ RETURN
END IF
END IF
*
Write
Preview
Loading…
Cancel
Save