Page MenuHomec4science

fix_wall_reflect_kokkos.h
No OneTemporary

File Metadata

Created
Sat, May 25, 07:21

fix_wall_reflect_kokkos.h

/* -*- 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.
------------------------------------------------------------------------- */
#ifdef FIX_CLASS
FixStyle(wall/reflect/kk,FixWallReflectKokkos<LMPDeviceType>)
FixStyle(wall/reflect/kk/device,FixWallReflectKokkos<LMPDeviceType>)
FixStyle(wall/reflect/kk/host,FixWallReflectKokkos<LMPHostType>)
#else
#ifndef LMP_FIX_WALL_REFLECT_KOKKOS_H
#define LMP_FIX_WALL_REFLECT_KOKKOS_H
#include "fix_wall_reflect.h"
#include "kokkos_type.h"
namespace LAMMPS_NS {
struct TagFixWallReflectPostIntegrate{};
template<class DeviceType>
class FixWallReflectKokkos : public FixWallReflect {
public:
typedef DeviceType device_type;
typedef ArrayTypes<DeviceType> AT;
FixWallReflectKokkos(class LAMMPS *, int, char **);
void post_integrate();
KOKKOS_INLINE_FUNCTION
void operator()(TagFixWallReflectPostIntegrate, const int&) const;
protected:
typename AT::t_x_array x;
typename AT::t_v_array v;
typename AT::t_int_1d_randomread mask;
int dim,side;
X_FLOAT coord;
};
}
#endif
#endif
/* ERROR/WARNING messages:
*/

Event Timeline