Skip to content

Commit fc92d90

Browse files
authored
chore: update variable name
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 0a5e6d4 commit fc92d90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/csrot/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 csrot( N, cx, strideX, cy, strideY, c, s )
121-
complex :: cx(*), cy(*)
120+
subroutine csrot( N, x, strideX, y, strideY, c, s )
121+
complex :: x(*), y(*)
122122
integer :: strideX, strideY, N
123123
real :: c, s
124124
end subroutine csrot
@@ -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)