We need to make sure in the following case that the out parameter is actually a reference. ```cpp Kokkos::parallel_reduce(n, KOKKOS_LAMBDA (int i, double out) { out += i; }, result ); ```