Skip to content

docs: change variable naming in blas/base/zcopy #6821

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 1, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
docs: change variable naming in blas/base/zaxpy
Signed-off-by: Shabareesh Shetty <[email protected]>
  • Loading branch information
ShabiShett07 authored Apr 26, 2025
commit ac11ee6e1757f9edb1c43390d6ed8d5ca763eb66
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ double precision function benchmark( iterations, len )
! ..
! External functions:
interface
subroutine zcopy( N, zx, strideX, zy, strideY )
complex(kind=kind(0.0d0)) :: zx(*), zy(*)
subroutine zcopy( N, x, strideX, y, strideY )
complex(kind=kind(0.0d0)) :: x(*), y(*)
integer :: strideX, strideY, N
end subroutine zcopy
end interface
Expand Down Expand Up @@ -207,4 +207,4 @@ subroutine main()
end do
call print_summary( count, count )
end subroutine main
end program bench
end program bench