Update Kokkos library in LAMMPS to v2.7.24

This commit is contained in:
Stan Moore
2018-11-12 15:16:26 -07:00
parent 1651a21f92
commit b3f08b38a2
320 changed files with 42934 additions and 1993 deletions

View File

@ -0,0 +1,26 @@
#include<classes.hpp>
KOKKOS_FUNCTION
Foo::Foo() {
val = 0;
}
KOKKOS_FUNCTION
Foo_1::Foo_1() {
val = 1;
}
KOKKOS_FUNCTION
int Foo_1::value() {
return val;
}
KOKKOS_FUNCTION
Foo_2::Foo_2() {
val = 2;
}
KOKKOS_FUNCTION
int Foo_2::value() {
return val;
}