oqp_csyrk_i64 Subroutine

public subroutine oqp_csyrk_i64(uplo, trans, n, k, alpha, a, lda, beta, c, ldc)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: uplo
character(len=1) :: trans
integer :: n
integer :: k
complex :: alpha
complex :: a(lda,*)
integer :: lda
complex :: beta
complex :: c(ldc,*)
integer :: ldc

Calls

proc~~oqp_csyrk_i64~~CallsGraph proc~oqp_csyrk_i64 oqp_csyrk_i64 csyrk csyrk proc~oqp_csyrk_i64->csyrk interface~show_message show_message proc~oqp_csyrk_i64->interface~show_message

Source Code

  subroutine oqp_csyrk_i64(uplo, trans, n, k, alpha, a, lda, beta, c, ldc)
    complex :: alpha
    complex :: beta
    integer :: k
    integer :: lda
    integer :: ldc
    integer :: n
    character :: trans
    character :: uplo
    complex :: a(lda,*)
    complex :: 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 csyrk(uplo, trans, n_, k_, alpha, a, lda_, beta, c, ldc_)

  end subroutine oqp_csyrk_i64