Skip to content
Snippets Groups Projects
Verified Commit 45181cfd authored by Sébastien Villemot's avatar Sébastien Villemot
Browse files

Fortran MEX: add interface for dgemm

parent 765109ee
No related branches found
No related tags found
No related merge requests found
! Copyright © 2019-2020 Dynare Team
! Copyright © 2019-2021 Dynare Team
!
! This file is part of Dynare.
!
......@@ -26,6 +26,17 @@ module blas
integer, parameter :: bllog = 4 ! Logical kind, gfortran-specific
#endif
interface
subroutine dgemm(transa, transb, m, n, k, alpha, a, lda, b, ldb, beta, c, ldc)
import :: blint, real64
character, intent(in) :: transa, transb
integer(blint), intent(in) :: m, n, k, lda, ldb, ldc
real(real64), dimension(*), intent(in) :: a, b
real(real64), intent(in) :: alpha, beta
real(real64), dimension(*), intent(inout) :: c
end subroutine dgemm
end interface
interface
subroutine dgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)
import :: blint, real64
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment