Browse Source

Add quick return if scaling with one (Reference-LAPACK PR674)

tags/v0.3.22^2
Martin Kroeker GitHub 2 years ago
parent
commit
3f31b69121
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 0 deletions
  1. +2
    -0
      lapack-netlib/SRC/clascl.f
  2. +2
    -0
      lapack-netlib/SRC/dlascl.f
  3. +2
    -0
      lapack-netlib/SRC/slascl.f
  4. +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
*


Loading…
Cancel
Save