diff --git a/examples/alpaka/nbody/nbody.cpp b/examples/alpaka/nbody/nbody.cpp index c033b855f8..a01f2e226e 100644 --- a/examples/alpaka/nbody/nbody.cpp +++ b/examples/alpaka/nbody/nbody.cpp @@ -26,7 +26,7 @@ using FP = float; constexpr auto problemSize = 64 * 1024; ///< total number of particles constexpr auto steps = 20; ///< number of steps to calculate, excluding 1 warmup run constexpr auto allowRsqrt = false; // rsqrt can be way faster, but less accurate (some compilers may insert an - // additional newton raphson refinement) + // additional newton raphson refinement) constexpr auto runUpdate = true; // run update step. Useful to disable for benchmarking the move step. #if defined(ALPAKA_ACC_CPU_B_SEQ_T_SEQ_ENABLED) || defined(ALPAKA_ACC_CPU_B_OMP2_T_SEQ_ENABLED) \