Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111570733
pair_cg_cmm_coul_cut_cuda.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, May 3, 09:27
Size
1 KB
Mime Type
text/x-c
Expires
Mon, May 5, 09:27 (2 d)
Engine
blob
Format
Raw Data
Handle
25951417
Attached To
rLAMMPS lammps
pair_cg_cmm_coul_cut_cuda.h
View Options
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
Original Version:
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
See the README file in the top-level LAMMPS directory.
-----------------------------------------------------------------------
USER-CUDA Package and associated modifications:
https://sourceforge.net/projects/lammpscuda/
Christian Trott, christian.trott@tu-ilmenau.de
Lars Winterfeld, lars.winterfeld@tu-ilmenau.de
Theoretical Physics II, University of Technology Ilmenau, Germany
See the README file in the USER-CUDA directory.
This software is distributed under the GNU General Public License.
------------------------------------------------------------------------- */
#ifdef PAIR_CLASS
PairStyle(cg/cmm/coul/cut/cuda,PairCGCMMCoulCutCuda)
#else
#ifndef PAIR_CG_CMM_COUL_CUT_CUDA_H
#define PAIR_CG_CMM_COUL_CUT_CUDA_H
#include "pair_cg_cmm_coul_cut.h"
namespace LAMMPS_NS {
class PairCGCMMCoulCutCuda : public PairCGCMMCoulCut
{
public:
PairCGCMMCoulCutCuda(class LAMMPS *);
void compute(int, int);
void settings(int, char **);
void coeff(int, char **);
void init_list(int, class NeighList *);
void init_style();
void ev_setup(int eflag, int vflag);
protected:
class Cuda *cuda;
void allocate();
bool allocated2;
class CudaNeighList* cuda_neigh_list;
double** cg_type_double;
};
}
#endif
#endif
Event Timeline
Log In to Comment