1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project
#include <Kokkos_Core.hpp>
#include <cstdio>
#include <iostream>
extern "C" void print_fortran_();
struct CountFunctor {
KOKKOS_FUNCTION void operator()(const long i, long& lcount) const {
lcount += (i % 2) == 0;
}
};
int main(int argc, char* argv[]) {
Kokkos::initialize(argc, argv);
Kokkos::DefaultExecutionSpace().print_configuration(std::cout);
if (argc < 2) {
fprintf(stderr, "Usage: %s [<kokkos_options>] <size>\n", argv[0]);
Kokkos::finalize();
exit(1);
}
const long n = strtol(argv[1], nullptr, 10);
printf("Number of even integers from 0 to %ld\n", n - 1);
Kokkos::Timer timer;
timer.reset();
// Compute the number of even integers from 0 to n-1, in parallel.
long count = 0;
CountFunctor functor;
Kokkos::parallel_reduce(n, functor, count);
double count_time = timer.seconds();
printf(" Parallel: %ld %10.6f\n", count, count_time);
timer.reset();
// Compare to a sequential loop.
long seq_count = 0;
for (long i = 0; i < n; ++i) {
seq_count += (i % 2) == 0;
}
count_time = timer.seconds();
printf("Sequential: %ld %10.6f\n", seq_count, count_time);
print_fortran_();
Kokkos::finalize();
return (count == seq_count) ? 0 : -1;
}
|