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
133c1a52
"platforms/cuda/vscode:/vscode.git/clone" did not exist on "1b12ede8156b4f9b4380c14e0f76844ffc88a272"
Commit
133c1a52
authored
Feb 25, 2013
by
Peter Eastman
Browse files
Avoid uninitialized memory
parent
c7e1b591
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
platforms/cuda/src/CudaContext.cpp
platforms/cuda/src/CudaContext.cpp
+10
-10
platforms/cuda/src/CudaKernels.cpp
platforms/cuda/src/CudaKernels.cpp
+4
-4
No files found.
platforms/cuda/src/CudaContext.cpp
View file @
133c1a52
...
...
@@ -827,9 +827,9 @@ void CudaContext::validateMolecules() {
vector
<
int4
>
newCellOffsets
(
numAtoms
);
if
(
useDoublePrecision
)
{
vector
<
double4
>
oldPosq
(
paddedNumAtoms
);
vector
<
double4
>
newPosq
(
paddedNumAtoms
);
vector
<
double4
>
newPosq
(
paddedNumAtoms
,
make_double4
(
0
,
0
,
0
,
0
)
);
vector
<
double4
>
oldVelm
(
paddedNumAtoms
);
vector
<
double4
>
newVelm
(
paddedNumAtoms
);
vector
<
double4
>
newVelm
(
paddedNumAtoms
,
make_double4
(
0
,
0
,
0
,
0
)
);
posq
->
download
(
oldPosq
);
velm
->
download
(
oldVelm
);
for
(
int
i
=
0
;
i
<
numAtoms
;
i
++
)
{
...
...
@@ -843,11 +843,11 @@ void CudaContext::validateMolecules() {
}
else
if
(
useMixedPrecision
)
{
vector
<
float4
>
oldPosq
(
paddedNumAtoms
);
vector
<
float4
>
newPosq
(
paddedNumAtoms
);
vector
<
float4
>
newPosq
(
paddedNumAtoms
,
make_float4
(
0
,
0
,
0
,
0
)
);
vector
<
float4
>
oldPosqCorrection
(
paddedNumAtoms
);
vector
<
float4
>
newPosqCorrection
(
paddedNumAtoms
);
vector
<
float4
>
newPosqCorrection
(
paddedNumAtoms
,
make_float4
(
0
,
0
,
0
,
0
)
);
vector
<
double4
>
oldVelm
(
paddedNumAtoms
);
vector
<
double4
>
newVelm
(
paddedNumAtoms
);
vector
<
double4
>
newVelm
(
paddedNumAtoms
,
make_double4
(
0
,
0
,
0
,
0
)
);
posq
->
download
(
oldPosq
);
velm
->
download
(
oldVelm
);
for
(
int
i
=
0
;
i
<
numAtoms
;
i
++
)
{
...
...
@@ -863,9 +863,9 @@ void CudaContext::validateMolecules() {
}
else
{
vector
<
float4
>
oldPosq
(
paddedNumAtoms
);
vector
<
float4
>
newPosq
(
paddedNumAtoms
);
vector
<
float4
>
newPosq
(
paddedNumAtoms
,
make_float4
(
0
,
0
,
0
,
0
)
);
vector
<
float4
>
oldVelm
(
paddedNumAtoms
);
vector
<
float4
>
newVelm
(
paddedNumAtoms
);
vector
<
float4
>
newVelm
(
paddedNumAtoms
,
make_float4
(
0
,
0
,
0
,
0
)
);
posq
->
download
(
oldPosq
);
velm
->
download
(
oldVelm
);
for
(
int
i
=
0
;
i
<
numAtoms
;
i
++
)
{
...
...
@@ -905,9 +905,9 @@ template <class Real, class Real4, class Mixed, class Mixed4>
void
CudaContext
::
reorderAtomsImpl
(
bool
enforcePeriodic
)
{
// Find the range of positions and the number of bins along each axis.
vector
<
Real4
>
oldPosq
(
paddedNumAtoms
);
vector
<
Real4
>
oldPosqCorrection
(
paddedNumAtoms
);
vector
<
Mixed4
>
oldVelm
(
paddedNumAtoms
);
vector
<
Real4
>
oldPosq
(
paddedNumAtoms
,
(
Real4
)
{
0
,
0
,
0
,
0
}
);
vector
<
Real4
>
oldPosqCorrection
(
paddedNumAtoms
,
(
Real4
)
{
0
,
0
,
0
,
0
}
);
vector
<
Mixed4
>
oldVelm
(
paddedNumAtoms
,
(
Mixed4
)
{
0
,
0
,
0
,
0
}
);
posq
->
download
(
oldPosq
);
velm
->
download
(
oldVelm
);
if
(
useMixedPrecision
)
...
...
platforms/cuda/src/CudaKernels.cpp
View file @
133c1a52
...
...
@@ -1409,7 +1409,7 @@ void CudaCalcNonbondedForceKernel::initialize(const System& system, const Nonbon
CudaArray& posq = cu.getPosq();
float4* posqf = (float4*) cu.getPinnedBuffer();
double4* posqd = (double4*) cu.getPinnedBuffer();
vector
<
float2
>
sigmaEpsilonVector
(
cu
.
getPaddedNumAtoms
());
vector<float2> sigmaEpsilonVector(cu.getPaddedNumAtoms()
, make_float2(0, 0)
);
vector<vector<int> > exclusionList(numParticles);
double sumSquaredCharges = 0.0;
hasCoulomb = false;
...
...
@@ -1747,7 +1747,7 @@ void CudaCalcNonbondedForceKernel::copyParametersToContext(ContextImpl& context,
posq.download(cu.getPinnedBuffer());
float4* posqf = (float4*) cu.getPinnedBuffer();
double4* posqd = (double4*) cu.getPinnedBuffer();
vector
<
float2
>
sigmaEpsilonVector
(
cu
.
getPaddedNumAtoms
());
vector<float2> sigmaEpsilonVector(cu.getPaddedNumAtoms()
, make_float2(0, 0)
);
double sumSquaredCharges = 0.0;
const vector<int>& order = cu.getAtomIndex();
for (int i = 0; i < force.getNumParticles(); i++) {
...
...
@@ -2026,7 +2026,7 @@ void CudaCalcGBSAOBCForceKernel::initialize(const System& system, const GBSAOBCF
CudaArray& posq = cu.getPosq();
float4* posqf = (float4*) cu.getPinnedBuffer();
double4* posqd = (double4*) cu.getPinnedBuffer();
vector
<
float2
>
paramsVector
(
cu
.
getPaddedNumAtoms
());
vector<float2> paramsVector(cu.getPaddedNumAtoms()
, make_float2(1, 1)
);
const double dielectricOffset = 0.009;
for (int i = 0; i < force.getNumParticles(); i++) {
double charge, radius, scalingFactor;
...
...
@@ -2144,7 +2144,7 @@ void CudaCalcGBSAOBCForceKernel::copyParametersToContext(ContextImpl& context, c
float4* posqf = (float4*) cu.getPinnedBuffer();
double4* posqd = (double4*) cu.getPinnedBuffer();
posq.download(cu.getPinnedBuffer());
vector
<
float2
>
paramsVector
(
cu
.
getPaddedNumAtoms
());
vector<float2> paramsVector(cu.getPaddedNumAtoms()
, make_float2(1, 1)
);
const double dielectricOffset = 0.009;
for (int i = 0; i < numParticles; i++) {
double charge, radius, scalingFactor;
...
...
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