Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90416290
pair_lj_cut_kokkos.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
Fri, Nov 1, 11:55
Size
4 KB
Mime Type
text/x-c
Expires
Sun, Nov 3, 11:55 (2 d)
Engine
blob
Format
Raw Data
Handle
22072555
Attached To
rLAMMPS lammps
pair_lj_cut_kokkos.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.
------------------------------------------------------------------------- */
#ifdef PAIR_CLASS
PairStyle
(
lj
/
cut
/
kk
,
PairLJCutKokkos
<
LMPDeviceType
>
)
PairStyle
(
lj
/
cut
/
kk
/
device
,
PairLJCutKokkos
<
LMPDeviceType
>
)
PairStyle
(
lj
/
cut
/
kk
/
host
,
PairLJCutKokkos
<
LMPHostType
>
)
#else
#ifndef LMP_PAIR_LJ_CUT_KOKKOS_H
#define LMP_PAIR_LJ_CUT_KOKKOS_H
#include "pair_kokkos.h"
#include "pair_lj_cut.h"
#include "neigh_list_kokkos.h"
namespace
LAMMPS_NS
{
template
<
class
DeviceType
>
class
PairLJCutKokkos
:
public
PairLJCut
{
public:
enum
{
EnabledNeighFlags
=
FULL
|
HALFTHREAD
|
HALF
|
N2
|
FULLCLUSTER
};
enum
{
COUL_FLAG
=
0
};
typedef
DeviceType
device_type
;
PairLJCutKokkos
(
class
LAMMPS
*
);
~
PairLJCutKokkos
();
void
compute
(
int
,
int
);
void
settings
(
int
,
char
**
);
void
init_style
();
double
init_one
(
int
,
int
);
struct
params_lj
{
params_lj
(){
cutsq
=
0
,
lj1
=
0
;
lj2
=
0
;
lj3
=
0
;
lj4
=
0
;
offset
=
0
;};
params_lj
(
int
i
){
cutsq
=
0
,
lj1
=
0
;
lj2
=
0
;
lj3
=
0
;
lj4
=
0
;
offset
=
0
;};
F_FLOAT
cutsq
,
lj1
,
lj2
,
lj3
,
lj4
,
offset
;
};
protected:
void
cleanup_copy
();
template
<
bool
STACKPARAMS
,
class
Specialisation
>
KOKKOS_INLINE_FUNCTION
F_FLOAT
compute_fpair
(
const
F_FLOAT
&
rsq
,
const
int
&
i
,
const
int
&
j
,
const
int
&
itype
,
const
int
&
jtype
)
const
;
template
<
bool
STACKPARAMS
,
class
Specialisation
>
KOKKOS_INLINE_FUNCTION
F_FLOAT
compute_evdwl
(
const
F_FLOAT
&
rsq
,
const
int
&
i
,
const
int
&
j
,
const
int
&
itype
,
const
int
&
jtype
)
const
;
template
<
bool
STACKPARAMS
,
class
Specialisation
>
KOKKOS_INLINE_FUNCTION
F_FLOAT
compute_ecoul
(
const
F_FLOAT
&
rsq
,
const
int
&
i
,
const
int
&
j
,
const
int
&
itype
,
const
int
&
jtype
)
const
{
return
0
;
}
Kokkos
::
DualView
<
params_lj
**
,
Kokkos
::
LayoutRight
,
DeviceType
>
k_params
;
typename
Kokkos
::
DualView
<
params_lj
**
,
Kokkos
::
LayoutRight
,
DeviceType
>::
t_dev_const
params
;
params_lj
m_params
[
MAX_TYPES_STACKPARAMS
+
1
][
MAX_TYPES_STACKPARAMS
+
1
];
// hardwired to space for 15 atom types
F_FLOAT
m_cutsq
[
MAX_TYPES_STACKPARAMS
+
1
][
MAX_TYPES_STACKPARAMS
+
1
];
typename
ArrayTypes
<
DeviceType
>::
t_x_array_randomread
x
;
typename
ArrayTypes
<
DeviceType
>::
t_x_array
c_x
;
typename
ArrayTypes
<
DeviceType
>::
t_f_array
f
;
typename
ArrayTypes
<
DeviceType
>::
t_int_1d_randomread
type
;
typename
ArrayTypes
<
DeviceType
>::
t_efloat_1d
d_eatom
;
typename
ArrayTypes
<
DeviceType
>::
t_virial_array
d_vatom
;
typename
ArrayTypes
<
DeviceType
>::
t_tagint_1d
tag
;
int
newton_pair
;
double
special_lj
[
4
];
typename
ArrayTypes
<
DeviceType
>::
tdual_ffloat_2d
k_cutsq
;
typename
ArrayTypes
<
DeviceType
>::
t_ffloat_2d
d_cutsq
;
class
AtomKokkos
*
atomKK
;
int
neighflag
;
int
nlocal
,
nall
,
eflag
,
vflag
;
void
allocate
();
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
FULL
,
true
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
HALF
,
true
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
HALFTHREAD
,
true
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
N2
,
true
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
FULLCLUSTER
,
true
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
FULL
,
false
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
HALF
,
false
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
HALFTHREAD
,
false
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
N2
,
false
>
;
friend
class
PairComputeFunctor
<
PairLJCutKokkos
,
FULLCLUSTER
,
false
>
;
friend
EV_FLOAT
pair_compute_neighlist
<
PairLJCutKokkos
,
FULL
,
void
>
(
PairLJCutKokkos
*
,
NeighListKokkos
<
DeviceType
>*
);
friend
EV_FLOAT
pair_compute_neighlist
<
PairLJCutKokkos
,
HALF
,
void
>
(
PairLJCutKokkos
*
,
NeighListKokkos
<
DeviceType
>*
);
friend
EV_FLOAT
pair_compute_neighlist
<
PairLJCutKokkos
,
HALFTHREAD
,
void
>
(
PairLJCutKokkos
*
,
NeighListKokkos
<
DeviceType
>*
);
friend
EV_FLOAT
pair_compute_neighlist
<
PairLJCutKokkos
,
N2
,
void
>
(
PairLJCutKokkos
*
,
NeighListKokkos
<
DeviceType
>*
);
friend
EV_FLOAT
pair_compute_fullcluster
<
PairLJCutKokkos
,
void
>
(
PairLJCutKokkos
*
,
NeighListKokkos
<
DeviceType
>*
);
friend
EV_FLOAT
pair_compute
<
PairLJCutKokkos
,
void
>
(
PairLJCutKokkos
*
,
NeighListKokkos
<
DeviceType
>*
);
friend
void
pair_virial_fdotr_compute
<
PairLJCutKokkos
>
(
PairLJCutKokkos
*
);
};
}
#endif
#endif
/* ERROR/WARNING messages:
*/
Event Timeline
Log In to Comment