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
tsoc
openmm
Commits
8c0b4073
"openmmapi/vscode:/vscode.git/clone" did not exist on "0a5be952ce721b97c585386d490f7d23e524a0dc"
Commit
8c0b4073
authored
Feb 19, 2009
by
Mark Friedrichs
Browse files
RNG seed mods for LangevinIntegrator
parent
73f248e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
platforms/cuda/src/CudaKernels.cpp
platforms/cuda/src/CudaKernels.cpp
+9
-0
No files found.
platforms/cuda/src/CudaKernels.cpp
View file @
8c0b4073
...
...
@@ -414,6 +414,15 @@ CudaIntegrateLangevinStepKernel::~CudaIntegrateLangevinStepKernel() {
void
CudaIntegrateLangevinStepKernel
::
initialize
(
const
System
&
system
,
const
LangevinIntegrator
&
integrator
)
{
initializeIntegration
(
system
,
data
,
integrator
);
// if LangevinIntegrator seed does not equal default value or is less than/equal to 0, then
// set gpu seed and redo random values
if
(
integrator
.
getRandomNumberSeed
()
<
1
){
_gpuContext
*
gpu
=
data
.
gpu
;
gpu
->
seed
=
static_cast
<
unsigned
long
>
(
integrator
.
getRandomNumberSeed
()
);
gpuInitializeRandoms
(
gpu
);
}
prevStepSize
=
-
1.0
;
}
...
...
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