subroutine oqp_dtrmm_i64(side, uplo, transa, diag, m, n, alpha, a, lda, b, ldb)
double precision :: alpha
integer :: lda
integer :: ldb
integer :: m
integer :: n
character :: diag
character :: side
character :: transa
character :: uplo
double precision :: a(lda,*)
double precision :: b(ldb,*)
integer(blas_int) :: m_, n_, lda_, ldb_
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
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)
call dtrmm(side, uplo, transa, diag, m_, n_, alpha, a, lda_, b, ldb_)
end subroutine oqp_dtrmm_i64