Neko-TOP
A portable framework for high-order spectral element flow toplogy optimization.
Loading...
Searching...
No Matches
lapack_interfaces.f90
Go to the documentation of this file.
1
34
35module lapack_interfaces
36 use num_types, only: rp
37
38 implicit none
39 private
40
41 public :: dgesv
42
43 interface
44 pure subroutine dgesv(n, nrhs, a, lda, ipiv, b, ldb, info)
45 import :: rp
46 integer, intent(in) :: n, nrhs, lda, ldb
47 real(kind=rp), intent(inout), dimension(lda, n) :: a
48 integer, intent(out), dimension(n) :: ipiv
49 real(kind=rp), intent(inout), dimension(ldb, nrhs) :: b
50 integer, intent(out) :: info
51 end subroutine dgesv
52 end interface
53
54end module lapack_interfaces