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
b723e4af
Commit
b723e4af
authored
Mar 22, 2013
by
Peter Eastman
Browse files
Replaced lots of tabs with spaces
parent
93c467b2
Changes
21
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
138 additions
and
138 deletions
+138
-138
CMakeLists.txt
CMakeLists.txt
+2
-2
platforms/cuda/include/windowsExportCuda.h
platforms/cuda/include/windowsExportCuda.h
+2
-2
platforms/cuda/src/CudaBondedUtilities.cpp
platforms/cuda/src/CudaBondedUtilities.cpp
+1
-1
platforms/cuda/src/CudaContext.cpp
platforms/cuda/src/CudaContext.cpp
+5
-5
platforms/cuda/src/CudaParallelKernels.cpp
platforms/cuda/src/CudaParallelKernels.cpp
+1
-1
platforms/cuda/src/CudaPlatform.cpp
platforms/cuda/src/CudaPlatform.cpp
+7
-7
platforms/cuda/src/kernels/pme.cu
platforms/cuda/src/kernels/pme.cu
+21
-21
platforms/cuda/tests/TestCudaEwald.cpp
platforms/cuda/tests/TestCudaEwald.cpp
+4
-4
platforms/opencl/include/windowsExportOpenCL.h
platforms/opencl/include/windowsExportOpenCL.h
+2
-2
platforms/opencl/src/OpenCLParallelKernels.cpp
platforms/opencl/src/OpenCLParallelKernels.cpp
+1
-1
platforms/opencl/src/kernels/customGBEnergyN2.cl
platforms/opencl/src/kernels/customGBEnergyN2.cl
+1
-1
platforms/opencl/src/kernels/customGBEnergyN2_cpu.cl
platforms/opencl/src/kernels/customGBEnergyN2_cpu.cl
+1
-1
platforms/reference/src/ReferenceKernels.cpp
platforms/reference/src/ReferenceKernels.cpp
+8
-8
platforms/reference/src/SimTKReference/PME.h
platforms/reference/src/SimTKReference/PME.h
+11
-11
platforms/reference/src/SimTKReference/ReferenceBondIxn.cpp
platforms/reference/src/SimTKReference/ReferenceBondIxn.cpp
+7
-7
platforms/reference/src/SimTKReference/ReferenceLJCoulomb14.cpp
...rms/reference/src/SimTKReference/ReferenceLJCoulomb14.cpp
+2
-2
platforms/reference/src/SimTKReference/ReferenceLJCoulombIxn.cpp
...ms/reference/src/SimTKReference/ReferenceLJCoulombIxn.cpp
+5
-5
platforms/reference/src/SimTKReference/fftpack.cpp
platforms/reference/src/SimTKReference/fftpack.cpp
+55
-55
platforms/reference/src/SimTKReference/fftpack.h
platforms/reference/src/SimTKReference/fftpack.h
+1
-1
platforms/reference/src/gbsa/CpuGBVI.cpp
platforms/reference/src/gbsa/CpuGBVI.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
b723e4af
platforms/cuda/include/windowsExportCuda.h
View file @
b723e4af
platforms/cuda/src/CudaBondedUtilities.cpp
View file @
b723e4af
platforms/cuda/src/CudaContext.cpp
View file @
b723e4af
platforms/cuda/src/CudaParallelKernels.cpp
View file @
b723e4af
platforms/cuda/src/CudaPlatform.cpp
View file @
b723e4af
platforms/cuda/src/kernels/pme.cu
View file @
b723e4af
...
...
@@ -178,7 +178,7 @@ gridEvaluateEnergy(real2* __restrict__ halfcomplex_pmeGrid, real* __restrict__ e
real
denom
=
m2
*
bx
*
by
*
bz
;
real
eterm
=
recipScaleFactor
*
EXP
(
-
RECIP_EXP_FACTOR
*
m2
)
/
denom
;
if
(
kz
>=
(
GRID_SIZE_Z
/
2
+
1
))
{
if
(
kz
>=
(
GRID_SIZE_Z
/
2
+
1
))
{
kx
=
((
kx
==
0
)
?
kx
:
GRID_SIZE_X
-
kx
);
ky
=
((
ky
==
0
)
?
ky
:
GRID_SIZE_Y
-
ky
);
kz
=
GRID_SIZE_Z
-
kz
;
...
...
platforms/cuda/tests/TestCudaEwald.cpp
View file @
b723e4af
platforms/opencl/include/windowsExportOpenCL.h
View file @
b723e4af
platforms/opencl/src/OpenCLParallelKernels.cpp
View file @
b723e4af
platforms/opencl/src/kernels/customGBEnergyN2.cl
View file @
b723e4af
platforms/opencl/src/kernels/customGBEnergyN2_cpu.cl
View file @
b723e4af
platforms/reference/src/ReferenceKernels.cpp
View file @
b723e4af
platforms/reference/src/SimTKReference/PME.h
View file @
b723e4af
platforms/reference/src/SimTKReference/ReferenceBondIxn.cpp
View file @
b723e4af
platforms/reference/src/SimTKReference/ReferenceLJCoulomb14.cpp
View file @
b723e4af
platforms/reference/src/SimTKReference/ReferenceLJCoulombIxn.cpp
View file @
b723e4af
platforms/reference/src/SimTKReference/fftpack.cpp
View file @
b723e4af
platforms/reference/src/SimTKReference/fftpack.h
View file @
b723e4af
platforms/reference/src/gbsa/CpuGBVI.cpp
View file @
b723e4af
Prev
1
2
Next
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