Rename GpuBonded into ListedForcesGpu
[alexxy/gromacs.git] / src / gromacs / listed_forces / listed_forces_gpu_internal.cu
similarity index 99%
rename from src/gromacs/listed_forces/gpubondedkernels.cu
rename to src/gromacs/listed_forces/listed_forces_gpu_internal.cu
index 407e447bdc95c08369159a47b597a43e6ffb8658..9b35ea6077440dbde4350fe3939d686766a89e99 100644 (file)
@@ -55,7 +55,7 @@
 #include "gromacs/gpu_utils/cudautils.cuh"
 #include "gromacs/gpu_utils/typecasts.cuh"
 #include "gromacs/gpu_utils/vectype_ops.cuh"
-#include "gromacs/listed_forces/gpubonded.h"
+#include "gromacs/listed_forces/listed_forces_gpu.h"
 #include "gromacs/math/units.h"
 #include "gromacs/mdlib/force_flags.h"
 #include "gromacs/mdtypes/interaction_const.h"
@@ -64,7 +64,7 @@
 #include "gromacs/timing/wallcycle.h"
 #include "gromacs/utility/gmxassert.h"
 
-#include "gpubonded_impl.h"
+#include "listed_forces_gpu_impl.h"
 
 #if defined(_MSVC)
 #    include <limits>
@@ -909,7 +909,7 @@ __global__ void exec_kernel_gpu(BondedCudaKernelParameters kernelParams)
 
 
 template<bool calcVir, bool calcEner>
-void GpuBonded::Impl::launchKernel()
+void ListedForcesGpu::Impl::launchKernel()
 {
     GMX_ASSERT(haveInteractions_,
                "Cannot launch bonded GPU kernels unless bonded GPU work was scheduled");
@@ -939,7 +939,7 @@ void GpuBonded::Impl::launchKernel()
     wallcycle_stop(wcycle_, WallCycleCounter::LaunchGpu);
 }
 
-void GpuBonded::launchKernel(const gmx::StepWorkload& stepWork)
+void ListedForcesGpu::launchKernel(const gmx::StepWorkload& stepWork)
 {
     if (stepWork.computeEnergy)
     {