Skip to content

Commit edc9c69

Browse files
committed
bench: dynamically determine double-precision size
1 parent 1dda7d2 commit edc9c69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ double precision function benchmark( iterations, len )
125125
! External functions:
126126
interface
127127
subroutine zcopy( N, zx, strideX, zy, strideY )
128-
complex(kind=8) :: zx(*), zy(*)
128+
complex(kind=kind(0.0d0)) :: zx(*), zy(*)
129129
integer :: strideX, strideY, N
130130
end subroutine zcopy
131131
end interface
@@ -214,4 +214,4 @@ subroutine main()
214214
end do
215215
call print_summary( count, count )
216216
end subroutine main
217-
end program bench
217+
end program bench

0 commit comments

Comments
 (0)