From 38464b74545be9702eda7bae820c40b56e7e7256 Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Sat, 27 Apr 2024 01:38:59 -0700 Subject: [PATCH] docs: remove comments --- .../blas/base/dasum/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/daxpy/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/dcopy/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/ddot/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/dnrm2/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/drot/benchmark/fortran/benchmark.length.f | 7 ------- .../blas/base/dscal/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/dsdot/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/dswap/benchmark/fortran/benchmark.length.f | 9 +-------- .../base/idamax/benchmark/fortran/benchmark.length.f | 7 ------- .../base/isamax/benchmark/fortran/benchmark.length.f | 7 ------- .../blas/base/sasum/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/saxpy/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/scopy/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/sdot/benchmark/fortran/benchmark.length.f | 9 +-------- .../base/sdsdot/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/snrm2/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/srot/benchmark/fortran/benchmark.length.f | 7 ------- .../blas/base/sscal/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/sswap/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/zcopy/benchmark/fortran/benchmark.length.f | 9 +-------- .../blas/base/zswap/benchmark/fortran/benchmark.length.f | 9 +-------- 22 files changed, 18 insertions(+), 172 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/dasum/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/dasum/benchmark/fortran/benchmark.length.f index e8d9f8e4a56..57c369fd5eb 100644 --- a/lib/node_modules/@stdlib/blas/base/dasum/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/dasum/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `dasum`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -214,4 +207,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/fortran/benchmark.length.f index 826d319e49c..8593b0be7ef 100644 --- a/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/daxpy/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `daxpy`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -215,4 +208,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/fortran/benchmark.length.f index fa4513dc5a3..3cfbbb68665 100644 --- a/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/dcopy/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `dcopy`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -213,4 +206,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/ddot/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/ddot/benchmark/fortran/benchmark.length.f index 66204190a26..f4dfbaa4bff 100644 --- a/lib/node_modules/@stdlib/blas/base/ddot/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/ddot/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `ddot`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -215,4 +208,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/fortran/benchmark.length.f index c2fe13fbb14..8115a252080 100644 --- a/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/dnrm2/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `dnrm2`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -214,4 +207,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/drot/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/drot/benchmark/fortran/benchmark.length.f index c78c9e0f6ee..b64791fa98c 100644 --- a/lib/node_modules/@stdlib/blas/base/drot/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/drot/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `drot`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. diff --git a/lib/node_modules/@stdlib/blas/base/dscal/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/dscal/benchmark/fortran/benchmark.length.f index 44b53e780a4..cbfe43e3bbf 100644 --- a/lib/node_modules/@stdlib/blas/base/dscal/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/dscal/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `dscal`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -212,4 +205,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/fortran/benchmark.length.f index da9b5c9b4ed..82b9222da26 100644 --- a/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/dsdot/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `dsdot`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -215,4 +208,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/dswap/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/dswap/benchmark/fortran/benchmark.length.f index 49c70a97c77..5145af47133 100644 --- a/lib/node_modules/@stdlib/blas/base/dswap/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/dswap/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `dswap`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -213,4 +206,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/idamax/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/idamax/benchmark/fortran/benchmark.length.f index f1630549c8f..be1ca4f1d72 100644 --- a/lib/node_modules/@stdlib/blas/base/idamax/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/idamax/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `idamax`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. diff --git a/lib/node_modules/@stdlib/blas/base/isamax/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/isamax/benchmark/fortran/benchmark.length.f index 7a20449c6c3..f999c749bc2 100644 --- a/lib/node_modules/@stdlib/blas/base/isamax/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/isamax/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `isamax`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. diff --git a/lib/node_modules/@stdlib/blas/base/sasum/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/sasum/benchmark/fortran/benchmark.length.f index e90240befe5..7d811ca3a4d 100644 --- a/lib/node_modules/@stdlib/blas/base/sasum/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/sasum/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `sasum`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -214,4 +207,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/fortran/benchmark.length.f index 9c537e459df..ef837197cbf 100644 --- a/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/saxpy/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `saxpy`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -215,4 +208,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/scopy/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/scopy/benchmark/fortran/benchmark.length.f index deee5d6fb33..065a139a393 100644 --- a/lib/node_modules/@stdlib/blas/base/scopy/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/scopy/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `scopy`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -213,4 +206,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/sdot/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/sdot/benchmark/fortran/benchmark.length.f index 3ca2251a46f..8ee0fd0f763 100644 --- a/lib/node_modules/@stdlib/blas/base/sdot/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/sdot/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `sdot`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -215,4 +208,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/fortran/benchmark.length.f index 0ddf72d1c44..b38431e3d20 100644 --- a/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/sdsdot/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `sdsdot`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -215,4 +208,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/fortran/benchmark.length.f index e9e3cff349a..1630a81e804 100644 --- a/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/snrm2/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `snrm2`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -214,4 +207,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/srot/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/srot/benchmark/fortran/benchmark.length.f index 2c94450ad58..79255f6db33 100644 --- a/lib/node_modules/@stdlib/blas/base/srot/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/srot/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `srot`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. diff --git a/lib/node_modules/@stdlib/blas/base/sscal/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/sscal/benchmark/fortran/benchmark.length.f index 0cf2f39e915..3858ba02dfe 100644 --- a/lib/node_modules/@stdlib/blas/base/sscal/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/sscal/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `sscal`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -212,4 +205,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/sswap/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/sswap/benchmark/fortran/benchmark.length.f index 63a80b356f3..b7107d7f5a7 100644 --- a/lib/node_modules/@stdlib/blas/base/sswap/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/sswap/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `sswap`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -213,4 +206,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/zcopy/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/zcopy/benchmark/fortran/benchmark.length.f index af63c760d19..85d89f933ed 100644 --- a/lib/node_modules/@stdlib/blas/base/zcopy/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/zcopy/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `zcopy`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -214,4 +207,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file diff --git a/lib/node_modules/@stdlib/blas/base/zswap/benchmark/fortran/benchmark.length.f b/lib/node_modules/@stdlib/blas/base/zswap/benchmark/fortran/benchmark.length.f index 6ade201f120..4f10a9ef60f 100644 --- a/lib/node_modules/@stdlib/blas/base/zswap/benchmark/fortran/benchmark.length.f +++ b/lib/node_modules/@stdlib/blas/base/zswap/benchmark/fortran/benchmark.length.f @@ -16,13 +16,6 @@ ! limitations under the License. !< -!> Benchmark `zswap`. -! -! ## Notes -! -! - Written in "free form" Fortran 95. -! -!< program bench implicit none ! .. @@ -214,4 +207,4 @@ subroutine main() end do call print_summary( count, count ) end subroutine main -end program bench +end program bench \ No newline at end of file