Add Kokkos version of atom_vec_hybrid_kokkos, without CUDA support
This commit is contained in:
@ -53,6 +53,8 @@ action atom_vec_dpd_kokkos.cpp atom_vec_dpd.cpp
|
||||
action atom_vec_dpd_kokkos.h atom_vec_dpd.h
|
||||
action atom_vec_full_kokkos.cpp atom_vec_full.cpp
|
||||
action atom_vec_full_kokkos.h atom_vec_full.h
|
||||
action atom_vec_hybrid_kokkos.cpp
|
||||
action atom_vec_hybrid_kokkos.h
|
||||
action atom_vec_kokkos.cpp
|
||||
action atom_vec_kokkos.h
|
||||
action atom_vec_molecular_kokkos.cpp atom_vec_molecular.cpp
|
||||
|
||||
@ -49,6 +49,7 @@ AtomKokkos::~AtomKokkos()
|
||||
memory->destroy_kokkos(k_radius, radius);
|
||||
memory->destroy_kokkos(k_rmass, rmass);
|
||||
memory->destroy_kokkos(k_omega, omega);
|
||||
memory->destroy_kokkos(k_angmom, angmom);
|
||||
memory->destroy_kokkos(k_torque, torque);
|
||||
|
||||
memory->destroy_kokkos(k_nspecial, nspecial);
|
||||
|
||||
@ -34,6 +34,7 @@ class AtomKokkos : public Atom {
|
||||
DAT::tdual_float_1d k_radius;
|
||||
DAT::tdual_float_1d k_rmass;
|
||||
DAT::tdual_v_array k_omega;
|
||||
DAT::tdual_v_array k_angmom;
|
||||
DAT::tdual_f_array k_torque;
|
||||
DAT::tdual_tagint_1d k_molecule;
|
||||
DAT::tdual_int_2d k_nspecial;
|
||||
|
||||
1191
src/KOKKOS/atom_vec_hybrid_kokkos.cpp
Normal file
1191
src/KOKKOS/atom_vec_hybrid_kokkos.cpp
Normal file
File diff suppressed because it is too large
Load Diff
161
src/KOKKOS/atom_vec_hybrid_kokkos.h
Normal file
161
src/KOKKOS/atom_vec_hybrid_kokkos.h
Normal file
@ -0,0 +1,161 @@
|
||||
/* -*- 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 ATOM_CLASS
|
||||
|
||||
AtomStyle(hybrid/kk,AtomVecHybridKokkos)
|
||||
|
||||
#else
|
||||
|
||||
#ifndef LMP_ATOM_VEC_HYBRID_KOKKOS_H
|
||||
#define LMP_ATOM_VEC_HYBRID_KOKKOS_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "atom_vec.h"
|
||||
#include "kokkos_type.h"
|
||||
|
||||
namespace LAMMPS_NS {
|
||||
|
||||
class AtomVecHybridKokkos : public AtomVecKokkos {
|
||||
public:
|
||||
int nstyles;
|
||||
class AtomVec **styles;
|
||||
char **keywords;
|
||||
|
||||
AtomVecHybridKokkos(class LAMMPS *);
|
||||
~AtomVecHybridKokkos();
|
||||
void process_args(int, char **);
|
||||
void init();
|
||||
void grow(int);
|
||||
void grow_reset();
|
||||
void copy(int, int, int);
|
||||
void clear_bonus();
|
||||
void force_clear(int, size_t);
|
||||
int pack_comm(int, int *, double *, int, int *);
|
||||
int pack_comm_vel(int, int *, double *, int, int *);
|
||||
void unpack_comm(int, int, double *);
|
||||
void unpack_comm_vel(int, int, double *);
|
||||
int pack_reverse(int, int, double *);
|
||||
void unpack_reverse(int, int *, double *);
|
||||
int pack_border(int, int *, double *, int, int *);
|
||||
int pack_border_vel(int, int *, double *, int, int *);
|
||||
void unpack_border(int, int, double *);
|
||||
void unpack_border_vel(int, int, double *);
|
||||
int pack_exchange(int, double *);
|
||||
int unpack_exchange(double *);
|
||||
int size_restart();
|
||||
int pack_restart(int, double *);
|
||||
int unpack_restart(double *);
|
||||
void create_atom(int, double *);
|
||||
void data_atom(double *, imageint, char **);
|
||||
int data_atom_hybrid(int, char **) {return 0;}
|
||||
void data_vel(int, char **);
|
||||
void pack_data(double **);
|
||||
void write_data(FILE *, int, double **);
|
||||
void pack_vel(double **);
|
||||
void write_vel(FILE *, int, double **);
|
||||
int property_atom(char *);
|
||||
void pack_property_atom(int, double *, int, int);
|
||||
bigint memory_usage();
|
||||
|
||||
int pack_comm_kokkos(const int &n, const DAT::tdual_int_2d &k_sendlist,
|
||||
const int & iswap,
|
||||
const DAT::tdual_xfloat_2d &buf,
|
||||
const int &pbc_flag, const int pbc[]);
|
||||
void unpack_comm_kokkos(const int &n, const int &nfirst,
|
||||
const DAT::tdual_xfloat_2d &buf);
|
||||
int pack_comm_self(const int &n, const DAT::tdual_int_2d &list,
|
||||
const int & iswap, const int nfirst,
|
||||
const int &pbc_flag, const int pbc[]);
|
||||
int pack_border_kokkos(int n, DAT::tdual_int_2d k_sendlist,
|
||||
DAT::tdual_xfloat_2d buf,int iswap,
|
||||
int pbc_flag, int *pbc, ExecutionSpace space);
|
||||
void unpack_border_kokkos(const int &n, const int &nfirst,
|
||||
const DAT::tdual_xfloat_2d &buf,
|
||||
ExecutionSpace space);
|
||||
int pack_exchange_kokkos(const int &nsend,DAT::tdual_xfloat_2d &buf,
|
||||
DAT::tdual_int_1d k_sendlist,
|
||||
DAT::tdual_int_1d k_copylist,
|
||||
ExecutionSpace space, int dim,
|
||||
X_FLOAT lo, X_FLOAT hi);
|
||||
int unpack_exchange_kokkos(DAT::tdual_xfloat_2d &k_buf, int nrecv,
|
||||
int nlocal, int dim, X_FLOAT lo, X_FLOAT hi,
|
||||
ExecutionSpace space);
|
||||
|
||||
void sync(ExecutionSpace space, unsigned int mask);
|
||||
void modified(ExecutionSpace space, unsigned int mask);
|
||||
void sync_overlapping_device(ExecutionSpace space, unsigned int mask);
|
||||
|
||||
private:
|
||||
tagint *tag;
|
||||
int *type,*mask;
|
||||
imageint *image;
|
||||
double **x,**v,**f;
|
||||
double **omega,**angmom;
|
||||
|
||||
DAT::t_tagint_1d d_tag;
|
||||
DAT::t_int_1d d_type, d_mask;
|
||||
HAT::t_tagint_1d h_tag;
|
||||
HAT::t_int_1d h_type, h_mask;
|
||||
|
||||
DAT::t_imageint_1d d_image;
|
||||
HAT::t_imageint_1d h_image;
|
||||
|
||||
DAT::t_x_array d_x;
|
||||
DAT::t_v_array d_v;
|
||||
DAT::t_f_array d_f;
|
||||
HAT::t_x_array h_x;
|
||||
HAT::t_v_array h_v;
|
||||
HAT::t_f_array h_f;
|
||||
|
||||
DAT::t_v_array d_omega, d_angmom;
|
||||
HAT::t_v_array h_omega, h_angmom;
|
||||
|
||||
DAT::tdual_int_1d k_count;
|
||||
|
||||
int nallstyles;
|
||||
char **allstyles;
|
||||
|
||||
void build_styles();
|
||||
int known_style(char *);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* ERROR/WARNING messages:
|
||||
|
||||
E: Atom style hybrid cannot have hybrid as an argument
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: Atom style hybrid cannot use same atom style twice
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: Cannot mix molecular and molecule template atom styles
|
||||
|
||||
Self-explanatory.
|
||||
|
||||
E: Per-processor system is too big
|
||||
|
||||
The number of owned atoms plus ghost atoms on a single
|
||||
processor must fit in 32-bit integer.
|
||||
|
||||
E: Invalid atom type in Atoms section of data file
|
||||
|
||||
Atom types must range from 1 to specified # of types.
|
||||
|
||||
*/
|
||||
Reference in New Issue
Block a user