Skip to content

Commit aac20be

Browse files
committed
Auto-generated commit
1 parent 6449676 commit aac20be

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`09c9ceb`](https://github.com/stdlib-js/stdlib/commit/09c9ceb58c6dd23c10f1980094851983c57d693f) - **chore:** fix formatting _(by Athan Reines)_
3738
- [`51bf6f9`](https://github.com/stdlib-js/stdlib/commit/51bf6f9d2bb027aacecda87e02f957badbc246b0) - **bench:** fix formatting _(by Athan Reines)_
3839
- [`2e40ad9`](https://github.com/stdlib-js/stdlib/commit/2e40ad9683287aecc1a08663caf41967612f728c) - **docs:** change variable naming for `blas/base/scnrm2` [(#7176)](https://github.com/stdlib-js/stdlib/pull/7176) _(by Shabareesh Shetty)_
3940
- [`62364f6`](https://github.com/stdlib-js/stdlib/commit/62364f62ea823a3b52c2ad25660ecd80c71f8f36) - **style:** fix C comment alignment _(by Philipp Burckhardt)_

benchmark/fortran/benchmark.length.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ subroutine print_results( iterations, elapsed )
103103
tmp = adjustl( str )
104104
print '(A,A)', ' iterations: ', trim( tmp )
105105
! ..
106-
write (str, '(f15.9)') elapsed
106+
write (str, '(f100.9)') elapsed
107107
tmp = adjustl( str )
108108
print '(A,A)', ' elapsed: ', trim( tmp )
109109
! ..
110-
write( str, '(f15.9)') rate
110+
write( str, '(f100.9)') rate
111111
tmp = adjustl( str )
112112
print '(A,A)', ' rate: ', trim( tmp )
113113
! ..

0 commit comments

Comments
 (0)