subroutine oqp_zherk_i64(uplo, trans, n, k, alpha, a, lda, beta, c, ldc)
double precision :: alpha
double precision :: beta
integer :: k
integer :: lda
integer :: ldc
integer :: n
character :: trans
character :: uplo
complex(kind=8) :: a(lda,*)
complex(kind=8) :: c(ldc,*)
integer(blas_int) :: n_, k_, lda_, ldc_
logical :: ok
if (ARG_CHECK) then
ok = .true.
ok = ok .and. abs(n ) <= HUGE_BLAS_INT-1
ok = ok .and. abs(k ) <= HUGE_BLAS_INT-1
ok = ok .and. abs(lda ) <= HUGE_BLAS_INT-1
ok = ok .and. abs(ldc ) <= HUGE_BLAS_INT-1
if (.not.ok) call show_message(ERRMSG, WITH_ABORT)
end if
n_ = int(n , blas_int)
k_ = int(k , blas_int)
lda_ = int(lda , blas_int)
ldc_ = int(ldc , blas_int)
call zherk(uplo, trans, n_, k_, alpha, a, lda_, beta, c, ldc_)
end subroutine oqp_zherk_i64