Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
On Thursday, 7th July from 1 to 3 pm there will be a maintenance with a short downtime of GitLab.
Open sidebar
MPIBP-Hummer
BioEM
Commits
e4bd4faa
Commit
e4bd4faa
authored
Jul 03, 2017
by
Luka Stanisic
Browse files
fixing recalibration
parent
4d137d11
Changes
1
Hide whitespace changes
Inline
Side-by-side
bioem.cpp
View file @
e4bd4faa
...
...
@@ -569,15 +569,15 @@ int bioem::run()
}
if
(
DebugOutput
>=
2
)
printf
(
"
\t
Time Projection %d: %f (rank %d)
\n
"
,
iOrientAtOnce
,
timer
.
GetCurrentElapsedTime
(),
mpi_rank
);
for
(
int
iOrient
=
iOrientAtOnce
;
iOrient
<
iTmpEnd
;
iOrient
++
)
/* Recalibrate if needed */
if
(
Autotuning
&&
((
iOrientAtOnce
-
iOrientStart
)
%
RECALIB_FACTOR
==
0
)
&&
((
iOrientEnd
-
iOrientAtOnce
)
>
RECALIB_FACTOR
)
&&
(
iOrientAtOnce
!=
iOrientStart
))
{
/* Recalibrate if needed */
if
(
Autotuning
&&
((
iOrient
-
iOrientStart
)
%
RECALIB_FACTOR
==
0
)
&&
((
iTmpEnd
-
iOrient
)
>
RECALIB_FACTOR
))
{
aut
.
Reset
();
rebalance
(
aut
.
Workload
());
}
aut
.
Reset
();
rebalance
(
aut
.
Workload
());
}
for
(
int
iOrient
=
iOrientAtOnce
;
iOrient
<
iTmpEnd
;
iOrient
++
)
{
mycomplex_t
*
proj_mapFFT
=
&
proj_mapsFFT
[(
iOrient
-
iOrientAtOnce
)
*
ProjMapSize
];
// ***************************************************************************************
...
...
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