Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91374499
improper_cvff_intel.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
Sun, Nov 10, 11:48
Size
2 KB
Mime Type
text/x-c
Expires
Tue, Nov 12, 11:48 (2 d)
Engine
blob
Format
Raw Data
Handle
22252834
Attached To
rLAMMPS lammps
improper_cvff_intel.h
View Options
/* -*- c++ -*- ----------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
Copyright (2003) Sandia Corporation. Under the terms of Contract
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
certain rights in this software. This software is distributed under
the GNU General Public License.
See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
Contributing author: W. Michael Brown (Intel)
------------------------------------------------------------------------- */
#ifdef IMPROPER_CLASS
ImproperStyle(cvff/intel,ImproperCvffIntel)
#else
#ifndef LMP_IMPROPER_CVFF_INTEL_H
#define LMP_IMPROPER_CVFF_INTEL_H
#include <stdio.h>
#include "improper_cvff.h"
#include "fix_intel.h"
namespace LAMMPS_NS {
class ImproperCvffIntel : public ImproperCvff {
public:
ImproperCvffIntel(class LAMMPS *);
virtual ~ImproperCvffIntel();
virtual void compute(int, int);
virtual void init();
protected:
FixIntel *fix;
template <class flt_t> class ForceConst;
template <class flt_t, class acc_t>
void compute(int eflag, int vflag, IntelBuffers<flt_t,acc_t> *buffers,
const ForceConst<flt_t> &fc);
template <int EVFLAG, int EFLAG, int NEWTON_BOND, class flt_t, class acc_t>
void eval(const int vflag, IntelBuffers<flt_t,acc_t> * buffers,
const ForceConst<flt_t> &fc);
template <class flt_t, class acc_t>
void pack_force_const(ForceConst<flt_t> &fc,
IntelBuffers<flt_t, acc_t> *buffers);
#ifdef _LMP_INTEL_OFFLOAD
int _use_base;
#endif
template <class flt_t>
class ForceConst {
public:
typedef struct { flt_t k; int sign, multiplicity; } fc_packed1;
fc_packed1 *fc;
ForceConst() : _nimpropertypes(0) {}
~ForceConst() { set_ntypes(0, NULL); }
void set_ntypes(const int nimpropertypes, Memory *memory);
private:
int _nimpropertypes;
Memory *_memory;
};
ForceConst<float> force_const_single;
ForceConst<double> force_const_double;
};
}
#endif
#endif
/* ERROR/WARNING messages:
W: Improper problem: %d %ld %d %d %d %d
Conformation of the 4 listed improper atoms is extreme; you may want
to check your simulation geometry.
*/
Event Timeline
Log In to Comment