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

blas_lapack.F08: minor simplification

parent 80a69678
Branches
Tags
No related merge requests found
...@@ -37,9 +37,7 @@ module blas ...@@ -37,9 +37,7 @@ module blas
real(real64), intent(in) :: alpha, beta real(real64), intent(in) :: alpha, beta
real(real64), dimension(*), intent(inout) :: c real(real64), dimension(*), intent(inout) :: c
end subroutine dgemm end subroutine dgemm
end interface
interface
subroutine dgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy) subroutine dgemv(trans, m, n, alpha, a, lda, x, incx, beta, y, incy)
import :: blint, real64 import :: blint, real64
implicit none implicit none
...@@ -116,9 +114,7 @@ module lapack ...@@ -116,9 +114,7 @@ module lapack
integer(blint), dimension(*), intent(out) :: ipiv integer(blint), dimension(*), intent(out) :: ipiv
integer(blint), intent(out) :: info integer(blint), intent(out) :: info
end subroutine dgesv end subroutine dgesv
end interface
interface
subroutine dgges(jobvsl, jobvsr, sort, selctg, n, a, lda, b, ldb, sdim, & subroutine dgges(jobvsl, jobvsr, sort, selctg, n, a, lda, b, ldb, sdim, &
alphar, alphai, beta, vsl, ldvsl, vsr, ldvsr, work, lwork, bwork, & alphar, alphai, beta, vsl, ldvsl, vsr, ldvsr, work, lwork, bwork, &
info) info)
...@@ -137,9 +133,7 @@ module lapack ...@@ -137,9 +133,7 @@ module lapack
logical(bllog), dimension(*), intent(out) :: bwork logical(bllog), dimension(*), intent(out) :: bwork
integer(blint), intent(out) :: sdim, info integer(blint), intent(out) :: sdim, info
end subroutine dgges end subroutine dgges
end interface
interface
subroutine dpotrf(uplo, n, a, lda, info) subroutine dpotrf(uplo, n, a, lda, info)
import :: blint, real64 import :: blint, real64
implicit none implicit none
...@@ -148,9 +142,7 @@ module lapack ...@@ -148,9 +142,7 @@ module lapack
real(real64), dimension(*), intent(inout) :: a real(real64), dimension(*), intent(inout) :: a
integer(blint), intent(out) :: info integer(blint), intent(out) :: info
end subroutine dpotrf end subroutine dpotrf
end interface
interface
function dlange(norm, m, n, a, lda, work) function dlange(norm, m, n, a, lda, work)
import :: blint, real64 import :: blint, real64
implicit none implicit none
... ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment