Skip to content

Commit 4487b68

Browse files
committed
Auto-generated commit
1 parent 64dfd00 commit 4487b68

File tree

38 files changed

+139
-98
lines changed

38 files changed

+139
-98
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,8 @@ A total of 22 issues were closed in this release:
483483

484484
<details>
485485

486+
- [`51bf6f9`](https://github.com/stdlib-js/stdlib/commit/51bf6f9d2bb027aacecda87e02f957badbc246b0) - **bench:** fix formatting _(by Athan Reines)_
487+
- [`f592413`](https://github.com/stdlib-js/stdlib/commit/f592413491ad000ffa6d8d257ca0a8cd5c39942c) - **test:** add test cases for `blas/base/sgemv` [(#7125)](https://github.com/stdlib-js/stdlib/pull/7125) _(by Shabareesh Shetty, Athan Reines)_
486488
- [`1a34934`](https://github.com/stdlib-js/stdlib/commit/1a349345ab14ff961594d888c2130f998047f209) - **test:** add test cases for `blas/base/strsv` [(#7166)](https://github.com/stdlib-js/stdlib/pull/7166) _(by Shabareesh Shetty)_
487489
- [`c67ccf3`](https://github.com/stdlib-js/stdlib/commit/c67ccf3815cf568888df36136427047cb98049e9) - **test:** add test cases for `blas/base/dtrsv` [(#7165)](https://github.com/stdlib-js/stdlib/pull/7165) _(by Shabareesh Shetty)_
488490
- [`a6cc0ea`](https://github.com/stdlib-js/stdlib/commit/a6cc0eaad0bc431fb2c531517697992fff2e6608) - **test:** add test cases for `blas/base/strmv` [(#7164)](https://github.com/stdlib-js/stdlib/pull/7164) _(by Shabareesh Shetty)_

base/ccopy/benchmark/fortran/benchmark.length.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..

base/cscal/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, '(f0.9)') elapsed
106+
write (str, '(f15.9)') elapsed
107107
tmp = adjustl( str )
108108
print '(A,A)', ' elapsed: ', trim( tmp )
109109
! ..
110-
write( str, '(f0.9)') rate
110+
write( str, '(f15.9)') rate
111111
tmp = adjustl( str )
112112
print '(A,A)', ' rate: ', trim( tmp )
113113
! ..

base/csrot/benchmark/fortran/benchmark.length.f

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..

base/cswap/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..
@@ -207,4 +207,4 @@ subroutine main()
207207
end do
208208
call print_summary( count, count )
209209
end subroutine main
210-
end program bench
210+
end program bench

base/dasum/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..
@@ -207,4 +207,4 @@ subroutine main()
207207
end do
208208
call print_summary( count, count )
209209
end subroutine main
210-
end program bench
210+
end program bench

base/daxpy/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..
@@ -208,4 +208,4 @@ subroutine main()
208208
end do
209209
call print_summary( count, count )
210210
end subroutine main
211-
end program bench
211+
end program bench

base/dcabs1/benchmark/fortran/benchmark.f

Lines changed: 3 additions & 3 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, '(f0.9)') elapsed
106+
write (str, '(f15.9)') elapsed
107107
tmp = adjustl( str )
108108
print '(A,A)', ' elapsed: ', trim( tmp )
109109
! ..
110-
write( str, '(f0.9)') rate
110+
write( str, '(f15.9)') rate
111111
tmp = adjustl( str )
112112
print '(A,A)', ' rate: ', trim( tmp )
113113
! ..
@@ -202,4 +202,4 @@ subroutine main()
202202
end do
203203
call print_summary( count, count )
204204
end subroutine main
205-
end program bench
205+
end program bench

base/dcopy/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..
@@ -206,4 +206,4 @@ subroutine main()
206206
end do
207207
call print_summary( count, count )
208208
end subroutine main
209-
end program bench
209+
end program bench

base/ddot/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ subroutine print_results( iterations, elapsed )
9696
tmp = adjustl( str )
9797
print '(A,A)', ' iterations: ', trim( tmp )
9898
! ..
99-
write (str, '(f0.9)') elapsed
99+
write (str, '(f15.9)') elapsed
100100
tmp = adjustl( str )
101101
print '(A,A)', ' elapsed: ', trim( tmp )
102102
! ..
103-
write( str, '(f0.9)') rate
103+
write( str, '(f15.9)') rate
104104
tmp = adjustl( str )
105105
print '(A,A)', ' rate: ', trim( tmp )
106106
! ..
@@ -208,4 +208,4 @@ subroutine main()
208208
end do
209209
call print_summary( count, count )
210210
end subroutine main
211-
end program bench
211+
end program bench

0 commit comments

Comments
 (0)