oqp_ssymm_i64 Subroutine

public subroutine oqp_ssymm_i64(side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc)

Arguments

Type IntentOptional Attributes Name
character(len=1) :: side
character(len=1) :: uplo
integer :: m
integer :: n
real :: alpha
real :: a(lda,*)
integer :: lda
real :: b(ldb,*)
integer :: ldb
real :: beta
real :: c(ldc,*)
integer :: ldc

Calls

proc~~oqp_ssymm_i64~~CallsGraph proc~oqp_ssymm_i64 oqp_ssymm_i64 interface~show_message show_message proc~oqp_ssymm_i64->interface~show_message ssymm ssymm proc~oqp_ssymm_i64->ssymm

Source Code

  subroutine oqp_ssymm_i64(side, uplo, m, n, alpha, a, lda, b, ldb, beta, c, ldc)
    real :: alpha
    real :: beta
    integer :: lda
    integer :: ldb
    integer :: ldc
    integer :: m
    integer :: n
    character :: side
    character :: uplo
    real :: a(lda,*)
    real :: b(ldb,*)
    real :: c(ldc,*)

    integer(blas_int) :: m_, n_, lda_, ldb_, ldc_
    logical :: ok

    if (ARG_CHECK) then
      ok = .true.
      ok = ok .and. abs(m   ) <= HUGE_BLAS_INT-1
      ok = ok .and. abs(n   ) <= HUGE_BLAS_INT-1
      ok = ok .and. abs(lda ) <= HUGE_BLAS_INT-1
      ok = ok .and. abs(ldb ) <= HUGE_BLAS_INT-1
      ok = ok .and. abs(ldc ) <= HUGE_BLAS_INT-1
      if (.not.ok) call show_message(ERRMSG, WITH_ABORT)
    end if

    m_   = int(m   , blas_int)
    n_   = int(n   , blas_int)
    lda_ = int(lda , blas_int)
    ldb_ = int(ldb , blas_int)
    ldc_ = int(ldc , blas_int)

    call ssymm(side, uplo, m_, n_, alpha, a, lda_, b, ldb_, beta, c, ldc_)

  end subroutine oqp_ssymm_i64