Update Kokkos library in LAMMPS to v3.0

This commit is contained in:
Stan Moore
2020-03-25 14:08:39 -06:00
parent 0252d8c210
commit 60864e38d1
2169 changed files with 121406 additions and 126492 deletions

View File

@ -1,14 +1,13 @@
#include<Kokkos_Core.hpp>
#include <Kokkos_Core.hpp>
int main(int argc, char* argv[]) {
Kokkos::initialize(argc,argv);
Kokkos::initialize(argc, argv);
{
int N = (argc>1) ? atoi(argv[1]) : 10000;
int M = (argc>2) ? atoi(argv[2]) : 10000;
int R = (argc>3) ? atoi(argv[3]) : 10;
printf("Called with: %i %i %i\n",N,M,R);
int N = (argc > 1) ? atoi(argv[1]) : 10000;
int M = (argc > 2) ? atoi(argv[2]) : 10000;
int R = (argc > 3) ? atoi(argv[3]) : 10;
printf("Called with: %i %i %i\n", N, M, R);
}
Kokkos::finalize();
}