Update Kokkos library in LAMMPS to v3.2
This commit is contained in:
@ -3,9 +3,9 @@
|
||||
int main(int argc, char* 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;
|
||||
int N = (argc > 1) ? std::stoi(argv[1]) : 10000;
|
||||
int M = (argc > 2) ? std::stoi(argv[2]) : 10000;
|
||||
int R = (argc > 3) ? std::stoi(argv[3]) : 10;
|
||||
|
||||
printf("Called with: %i %i %i\n", N, M, R);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user