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
4153c48d
Commit
4153c48d
authored
Jul 03, 2017
by
Luka Stanisic
Browse files
fixing GPUWorkload<100 for minimal use cases, such as Tutorial
parent
60fde8f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
bioem_cuda.cu
View file @
4153c48d
...
...
@@ -618,7 +618,7 @@ int bioem_cuda::deviceStartRun()
}
else
{
maxRef
=
(
size_t
)
RefMap
.
ntotRefMap
*
(
size_t
)
GPUWorkload
/
100
;
maxRef
=
RefMap
.
ntotRefMap
==
1
?
(
size_t
)
RefMap
.
ntotRefMap
:
(
size_t
)
RefMap
.
ntotRefMap
*
(
size_t
)
GPUWorkload
/
100
;
pProb_host
=
new
bioem_Probability
;
pProb_host
->
init
(
maxRef
,
param
.
nTotGridAngles
,
param
.
nTotCC
,
*
this
);
pProb_host
->
copyFrom
(
&
pProb
,
*
this
);
...
...
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