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
014f3406
Commit
014f3406
authored
Oct 23, 2009
by
Peter Eastman
Browse files
Changed PME interpolation order to 5
parent
79c04efa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
platforms/cuda/src/kernels/cudatypes.h
platforms/cuda/src/kernels/cudatypes.h
+1
-1
platforms/reference/src/SimTKReference/ReferenceLJCoulombIxn.cpp
...ms/reference/src/SimTKReference/ReferenceLJCoulombIxn.cpp
+1
-1
No files found.
platforms/cuda/src/kernels/cudatypes.h
View file @
014f3406
...
@@ -237,7 +237,7 @@ static const unsigned int MAX_TABULATED_FUNCTIONS = 4;
...
@@ -237,7 +237,7 @@ static const unsigned int MAX_TABULATED_FUNCTIONS = 4;
static
const
float
PI
=
3.14159265358979323846
f
;
static
const
float
PI
=
3.14159265358979323846
f
;
static
const
int
PME_ORDER
=
4
;
static
const
int
PME_ORDER
=
5
;
enum
CudaNonbondedMethod
enum
CudaNonbondedMethod
{
{
...
...
platforms/reference/src/SimTKReference/ReferenceLJCoulombIxn.cpp
View file @
014f3406
...
@@ -279,7 +279,7 @@ int ReferenceLJCoulombIxn::calculateEwaldIxn( int numberOfAtoms, RealOpenMM** at
...
@@ -279,7 +279,7 @@ int ReferenceLJCoulombIxn::calculateEwaldIxn( int numberOfAtoms, RealOpenMM** at
pme_t
pmedata
;
/* abstract handle for PME data */
pme_t
pmedata
;
/* abstract handle for PME data */
RealOpenMM
virial
[
3
][
3
];
RealOpenMM
virial
[
3
][
3
];
pme_init
(
&
pmedata
,
alphaEwald
,
numberOfAtoms
,
meshDim
,
4
,
1
);
pme_init
(
&
pmedata
,
alphaEwald
,
numberOfAtoms
,
meshDim
,
5
,
1
);
pme_exec
(
pmedata
,
atomCoordinates
,
forces
,
atomParameters
,
periodicBoxSize
,
&
recipEnergy
,
virial
);
pme_exec
(
pmedata
,
atomCoordinates
,
forces
,
atomParameters
,
periodicBoxSize
,
&
recipEnergy
,
virial
);
...
...
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