changing the fix name and file names for coherence

This commit is contained in:
Eddy Barraud
2024-06-12 15:12:55 +02:00
parent 7f1fbca66f
commit 84ed769ca3
8 changed files with 9 additions and 9 deletions

View File

@ -14,14 +14,14 @@
***************************************************************************/
#if defined(USE_OPENCL)
#include "dpd_charged_cl.h"
#include "lal_dpd_coul_slater_long_cl.h"
#elif defined(USE_CUDART)
const char *dpd_charged=0;
#else
#include "dpd_charged_cubin.h"
#include "lal_dpd_coul_slater_long_cubin.h"
#endif
#include "lal_dpd_charged.h"
#include "lal_dpd_coul_slater_long.h"
#include <cassert>
namespace LAMMPS_AL {
#define DPDChargedT DPDCharged<numtyp, acctyp>

View File

@ -17,7 +17,7 @@
#include <cassert>
#include <cmath>
#include "lal_dpd_charged.h"
#include "lal_dpd_coul_slater_long.h"
using namespace std;
using namespace LAMMPS_AL;

View File

@ -16,7 +16,7 @@
Contributing author: Kurt Smith (U Pittsburgh)
------------------------------------------------------------------------- */
#include "pair_dpd_charged.h"
#include "pair_dpd_coul_slater_long.h"
#include "atom.h"
#include "comm.h"

View File

@ -13,7 +13,7 @@
#ifdef PAIR_CLASS
// clang-format off
PairStyle(dpd/charged,PairDPDCharged);
PairStyle(dpd/coul/slater/long,PairDPDCharged);
// clang-format on
#else

View File

@ -15,7 +15,7 @@
Contributing author: Trung Dac Nguyen (ORNL)
------------------------------------------------------------------------- */
#include "pair_dpd_charged_gpu.h"
#include "pair_dpd_coul_slater_long_gpu.h"
#include "atom.h"
#include "comm.h"

View File

@ -13,14 +13,14 @@
#ifdef PAIR_CLASS
// clang-format off
PairStyle(dpd/charged/gpu,PairDPDChargedGPU);
PairStyle(dpd/coul/slater/long,PairDPDChargedGPU);
// clang-format on
#else
#ifndef LMP_PAIR_DPD_CHARGED_GPU_H
#define LMP_PAIR_DPD_CHARGED_GPU_H
#include "pair_dpd_charged.h"
#include "pair_coul_slater_long.h"
namespace LAMMPS_NS {