Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
elpa
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Environments
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
elpa
elpa
Commits
773e5b2f
Commit
773e5b2f
authored
May 24, 2018
by
Lorenz Huedepohl
Committed by
Andreas Marek
May 25, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Off by one error in autotuning
Lead to the first configuration be tested twice
parent
c4b12327
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/elpa_impl.F90
src/elpa_impl.F90
+1
-2
No files found.
src/elpa_impl.F90
View file @
773e5b2f
...
...
@@ -864,7 +864,7 @@ module elpa_impl
call
self
%
autotune_timer
%
free
()
endif
do
while
(
ts_impl
%
i
<
ts_impl
%
N
)
do
while
(
ts_impl
%
i
<
ts_impl
%
N
-
1
)
ts_impl
%
i
=
ts_impl
%
i
+
1
if
(
elpa_index_set_autotune_parameters_c
(
self
%
index
,
ts_impl
%
level
,
ts_impl
%
domain
,
ts_impl
%
i
)
==
1
)
then
unfinished
=
.true.
...
...
@@ -922,7 +922,6 @@ module elpa_impl
print
*
,
"This should not happen"
end
select
print
*
,
"set best, i = "
,
ts_impl
%
min_loc
,
"best time = "
,
ts_impl
%
min_val
if
(
elpa_index_set_autotune_parameters_c
(
self
%
index
,
ts_impl
%
level
,
ts_impl
%
domain
,
ts_impl
%
min_loc
)
/
=
1
)
then
stop
"This should not happen (in elpa_autotune_set_best())"
endif
...
...
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