Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lammps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
multiscale
lammps
Commits
d029cb90
Unverified
Commit
d029cb90
authored
7 years ago
by
Steve Plimpton
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #743 from stanmoore1/kk_yukawa_fix
Fix compile error in pair_yukawa_kokkos
parents
d7e5d60f
3e99d1a8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/Section_commands.txt
+1
-1
1 addition, 1 deletion
doc/src/Section_commands.txt
src/KOKKOS/pair_yukawa_kokkos.cpp
+8
-8
8 additions, 8 deletions
src/KOKKOS/pair_yukawa_kokkos.cpp
with
9 additions
and
9 deletions
doc/src/Section_commands.txt
+
1
−
1
View file @
d029cb90
...
@@ -1023,7 +1023,7 @@ KOKKOS, o = USER-OMP, t = OPT.
...
@@ -1023,7 +1023,7 @@ KOKKOS, o = USER-OMP, t = OPT.
"tri/lj"_pair_tri_lj.html,
"tri/lj"_pair_tri_lj.html,
"vashishta (ko)"_pair_vashishta.html,
"vashishta (ko)"_pair_vashishta.html,
"vashishta/table (o)"_pair_vashishta.html,
"vashishta/table (o)"_pair_vashishta.html,
"yukawa (go)"_pair_yukawa.html,
"yukawa (go
k
)"_pair_yukawa.html,
"yukawa/colloid (go)"_pair_yukawa_colloid.html,
"yukawa/colloid (go)"_pair_yukawa_colloid.html,
"zbl (go)"_pair_zbl.html :tb(c=4,ea=c)
"zbl (go)"_pair_zbl.html :tb(c=4,ea=c)
...
...
This diff is collapsed.
Click to expand it.
src/KOKKOS/pair_yukawa_kokkos.cpp
+
8
−
8
View file @
d029cb90
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
#include
"integrate.h"
#include
"integrate.h"
#include
"respa.h"
#include
"respa.h"
#include
"math_const.h"
#include
"math_const.h"
#include
"memory.h"
#include
"memory
_kokkos
.h"
#include
"error.h"
#include
"error.h"
#include
"atom_masks.h"
#include
"atom_masks.h"
...
@@ -58,8 +58,8 @@ template<class DeviceType>
...
@@ -58,8 +58,8 @@ template<class DeviceType>
PairYukawaKokkos
<
DeviceType
>::~
PairYukawaKokkos
()
PairYukawaKokkos
<
DeviceType
>::~
PairYukawaKokkos
()
{
{
if
(
allocated
)
{
if
(
allocated
)
{
memory
->
destroy_kokkos
(
k_eatom
,
eatom
);
memory
KK
->
destroy_kokkos
(
k_eatom
,
eatom
);
memory
->
destroy_kokkos
(
k_vatom
,
vatom
);
memory
KK
->
destroy_kokkos
(
k_vatom
,
vatom
);
k_cutsq
=
DAT
::
tdual_ffloat_2d
();
k_cutsq
=
DAT
::
tdual_ffloat_2d
();
memory
->
sfree
(
cutsq
);
memory
->
sfree
(
cutsq
);
eatom
=
NULL
;
eatom
=
NULL
;
...
@@ -90,7 +90,7 @@ void PairYukawaKokkos<DeviceType>::allocate()
...
@@ -90,7 +90,7 @@ void PairYukawaKokkos<DeviceType>::allocate()
int
n
=
atom
->
ntypes
;
int
n
=
atom
->
ntypes
;
memory
->
destroy
(
cutsq
);
memory
->
destroy
(
cutsq
);
memory
->
create_kokkos
(
k_cutsq
,
cutsq
,
n
+
1
,
n
+
1
,
"pair:cutsq"
);
memory
KK
->
create_kokkos
(
k_cutsq
,
cutsq
,
n
+
1
,
n
+
1
,
"pair:cutsq"
);
d_cutsq
=
k_cutsq
.
template
view
<
DeviceType
>();
d_cutsq
=
k_cutsq
.
template
view
<
DeviceType
>();
k_params
=
Kokkos
::
DualView
<
params_yukawa
**
,
k_params
=
Kokkos
::
DualView
<
params_yukawa
**
,
Kokkos
::
LayoutRight
,
DeviceType
>
(
Kokkos
::
LayoutRight
,
DeviceType
>
(
...
@@ -183,13 +183,13 @@ void PairYukawaKokkos<DeviceType>::compute(int eflag_in, int vflag_in)
...
@@ -183,13 +183,13 @@ void PairYukawaKokkos<DeviceType>::compute(int eflag_in, int vflag_in)
// reallocate per-atom arrays if necessary
// reallocate per-atom arrays if necessary
if
(
eflag_atom
)
{
if
(
eflag_atom
)
{
memory
->
destroy_kokkos
(
k_eatom
,
eatom
);
memory
KK
->
destroy_kokkos
(
k_eatom
,
eatom
);
memory
->
create_kokkos
(
k_eatom
,
eatom
,
maxeatom
,
"pair:eatom"
);
memory
KK
->
create_kokkos
(
k_eatom
,
eatom
,
maxeatom
,
"pair:eatom"
);
d_eatom
=
k_eatom
.
view
<
DeviceType
>
();
d_eatom
=
k_eatom
.
view
<
DeviceType
>
();
}
}
if
(
vflag_atom
)
{
if
(
vflag_atom
)
{
memory
->
destroy_kokkos
(
k_vatom
,
vatom
);
memory
KK
->
destroy_kokkos
(
k_vatom
,
vatom
);
memory
->
create_kokkos
(
k_vatom
,
vatom
,
maxvatom
,
6
,
"pair:vatom"
);
memory
KK
->
create_kokkos
(
k_vatom
,
vatom
,
maxvatom
,
6
,
"pair:vatom"
);
d_vatom
=
k_vatom
.
view
<
DeviceType
>
();
d_vatom
=
k_vatom
.
view
<
DeviceType
>
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment