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
Marco Ratto
dynare
Commits
4e16ffcd
Unverified
Commit
4e16ffcd
authored
Oct 21, 2020
by
Sébastien Villemot
Browse files
Fortran MEX interface: minor fix for interface to dgemv
parent
6f415dff
Changes
1
Hide whitespace changes
Inline
Side-by-side
mex/sources/blas_lapack.F08
View file @
4e16ffcd
...
...
@@ -29,7 +29,7 @@ module blas
interface
subroutine
dgemv
(
trans
,
m
,
n
,
alpha
,
a
,
lda
,
x
,
incx
,
beta
,
y
,
incy
)
import
::
blint
,
real64
character
::
trans
character
,
intent
(
in
)
::
trans
integer
(
blint
),
intent
(
in
)
::
m
,
n
,
lda
,
incx
,
incy
real
(
real64
),
dimension
(
*
),
intent
(
in
)
::
a
,
x
real
(
real64
),
intent
(
in
)
::
alpha
,
beta
...
...
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