diff --git a/test/functional/forall/segment/tests/test-forall-RangeSegment.hpp b/test/functional/forall/segment/tests/test-forall-RangeSegment.hpp index b85790255f..2cef3b5783 100644 --- a/test/functional/forall/segment/tests/test-forall-RangeSegment.hpp +++ b/test/functional/forall/segment/tests/test-forall-RangeSegment.hpp @@ -39,6 +39,8 @@ void ForallRangeSegmentTestImpl(INDEX_TYPE first, INDEX_TYPE last) std::iota(test_array, test_array + RAJA::stripIndexType(N), rbegin); + working_res.memcpy(working_array, test_array, sizeof(INDEX_TYPE) * data_len); + RAJA::forall(r1, [=] RAJA_HOST_DEVICE(INDEX_TYPE idx) { working_array[RAJA::stripIndexType(idx - rbegin)] = idx; }); diff --git a/test/functional/kernel/CMakeLists.txt b/test/functional/kernel/CMakeLists.txt index 4792da38b2..e9a50028b6 100644 --- a/test/functional/kernel/CMakeLists.txt +++ b/test/functional/kernel/CMakeLists.txt @@ -49,7 +49,7 @@ add_subdirectory(nested-loop-view-types) add_subdirectory(reduce-loc) -add_subdirectory(single-loop-tile-icount-tcount) +#add_subdirectory(single-loop-tile-icount-tcount) add_subdirectory(tile-variants)