Skip to content

Commit ac11ee6

Browse files
authored
docs: change variable naming in blas/base/zaxpy
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent d87dd71 commit ac11ee6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/zcopy/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ double precision function benchmark( iterations, len )
117117
! ..
118118
! External functions:
119119
interface
120-
subroutine zcopy( N, zx, strideX, zy, strideY )
121-
complex(kind=kind(0.0d0)) :: zx(*), zy(*)
120+
subroutine zcopy( N, x, strideX, y, strideY )
121+
complex(kind=kind(0.0d0)) :: x(*), y(*)
122122
integer :: strideX, strideY, N
123123
end subroutine zcopy
124124
end interface
@@ -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

0 commit comments

Comments
 (0)