Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Johannes Pfeifer
dynare
Commits
3f53a949
Unverified
Commit
3f53a949
authored
Jul 30, 2020
by
Sébastien Villemot
Browse files
Add dpotrf to Fortran 2008 BLAS/LAPACK bindings
parent
ea184312
Changes
1
Hide whitespace changes
Inline
Side-by-side
mex/sources/blas_lapack.F08
View file @
3f53a949
...
...
@@ -56,7 +56,7 @@ module lapack
alphar
,
alphai
,
beta
,
vsl
,
ldvsl
,
vsr
,
ldvsr
,
work
,
lwork
,
bwork
,
&
info
)
import
::
blint
,
bllog
,
real64
character
::
jobvsl
,
jobvsr
,
sort
character
,
intent
(
in
)
::
jobvsl
,
jobvsr
,
sort
interface
logical
(
bllog
)
function
selctg
(
alphar
,
alphai
,
beta
)
import
::
bllog
,
real64
...
...
@@ -70,4 +70,14 @@ module lapack
integer
(
blint
),
intent
(
out
)
::
sdim
,
info
end
subroutine
dgges
end
interface
interface
subroutine
dpotrf
(
uplo
,
n
,
a
,
lda
,
info
)
import
::
blint
,
real64
character
,
intent
(
in
)
::
uplo
integer
(
blint
),
intent
(
in
)
::
n
,
lda
real
(
real64
),
dimension
(
*
),
intent
(
inout
)
::
a
integer
(
blint
),
intent
(
out
)
::
info
end
subroutine
dpotrf
end
interface
end
module
lapack
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment