Skip to content
Snippets Groups Projects
Commit 2813923f authored by Stan Moore's avatar Stan Moore
Browse files

Add multiple inheritance to pair_multi_lucy_rx_kokkos

parent 5d9a6c1f
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ PairStyle(multi/lucy/rx/kk/host,PairMultiLucyRXKokkos<LMPHostType>) ...@@ -25,6 +25,7 @@ PairStyle(multi/lucy/rx/kk/host,PairMultiLucyRXKokkos<LMPHostType>)
#include "pair_multi_lucy_rx.h" #include "pair_multi_lucy_rx.h"
#include "pair_kokkos.h" #include "pair_kokkos.h"
#include "kokkos_base.h"
#include "kokkos_type.h" #include "kokkos_type.h"
namespace LAMMPS_NS { namespace LAMMPS_NS {
...@@ -43,7 +44,7 @@ template<int NEIGHFLAG, int NEWTON_PAIR, bool ONE_TYPE> ...@@ -43,7 +44,7 @@ template<int NEIGHFLAG, int NEWTON_PAIR, bool ONE_TYPE>
struct TagPairMultiLucyRXComputeLocalDensity{}; struct TagPairMultiLucyRXComputeLocalDensity{};
template<class DeviceType> template<class DeviceType>
class PairMultiLucyRXKokkos : public PairMultiLucyRX { class PairMultiLucyRXKokkos : public PairMultiLucyRX, public KokkosBase {
public: public:
typedef DeviceType device_type; typedef DeviceType device_type;
typedef ArrayTypes<DeviceType> AT; typedef ArrayTypes<DeviceType> AT;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment