Skip to content

Commit d87a298

Browse files
committed
Auto-generated commit
1 parent 44e23c5 commit d87a298

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2459,6 +2459,7 @@ A total of 35 people contributed to this release. Thank you to the following con
24592459
<details>
24602460

24612461
- [`08eaa1b`](https://github.com/stdlib-js/stdlib/commit/08eaa1b176d0e510b0af53d7b7a02d5c63090e1f) - **feat:** add `blas/base/dznrm2` [(#2271)](https://github.com/stdlib-js/stdlib/pull/2271) _(by Aman Bhansali, Athan Reines)_
2462+
- [`72a5a6c`](https://github.com/stdlib-js/stdlib/commit/72a5a6cd80794d51bbb0489c0eab5b8bf4839c27) - **style:** use consistent spacing _(by Athan Reines)_
24622463
- [`0b59ac0`](https://github.com/stdlib-js/stdlib/commit/0b59ac098da813bb1e8ae93b93b1bb5df30d2a18) - **refactor:** use utility to resolve offset _(by Athan Reines)_
24632464
- [`81aca47`](https://github.com/stdlib-js/stdlib/commit/81aca4745dae0b9ab083f1c79f6e60617a109f4c) - **fix:** update variable name _(by Athan Reines)_
24642465
- [`659f752`](https://github.com/stdlib-js/stdlib/commit/659f752db18317bf5fc237fdbcad0d74b61e1ed9) - **style:** add missing spaces _(by Philipp Burckhardt)_

base/scnrm2/src/scnrm2.f

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ real function scnrm2( N, cx, strideX )
6060
real( wp ), parameter :: maxN = huge( 0.0_wp )
6161
! ..
6262
! Blue's scaling constants:
63-
real(wp), parameter :: tsml = 1.08420217e-19_wp
64-
real(wp), parameter :: tbig = 4.50359963e15_wp
65-
real(wp), parameter :: ssml = 3.77789319e22_wp
66-
real(wp), parameter :: sbig = 1.32348898e-23_wp
63+
real( wp ), parameter :: tsml = 1.08420217e-19_wp
64+
real( wp ), parameter :: tbig = 4.50359963e15_wp
65+
real( wp ), parameter :: ssml = 3.77789319e22_wp
66+
real( wp ), parameter :: sbig = 1.32348898e-23_wp
6767
!..
6868
! Scalar arguments:
6969
integer :: N, strideX

0 commit comments

Comments
 (0)