Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
solverstack
mini-examples
starpu_example_dgemm
Commits
e434e15b
Commit
e434e15b
authored
Nov 25, 2021
by
Antoine Jego
Browse files
fix cli args
parent
06b351ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
fstarpu_example_dgemm.f90
View file @
e434e15b
...
...
@@ -98,9 +98,19 @@ program fstarpu_example_dgemm
read
(
str
(
1
:
i
),
*
)
q
call
get_command_argument
(
7
,
value
=
str
,
length
=
i
)
read
(
str
(
1
:
i
),
*
)
t
if
(
command_argument_count
()
==
8
)
then
trace
=
.true.
end
if
do
j
=
8
,
command_argument_count
()
call
get_command_argument
(
j
,
value
=
str
,
length
=
i
)
select
case
(
str
)
case
(
't'
)
trace
=
.true.
case
(
'f'
)
lflush
=
.true.
case
(
'p'
)
prune
=
.true.
case
(
'h'
)
prune_handles
=
.true.
end
select
end
do
if
(
mod
(
m
,
bs
)
.ne.
0
)
stop
75
if
(
mod
(
n
,
bs
)
.ne.
0
)
stop
75
...
...
Write
Preview
Markdown
is supported
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