@@ -266,7 +266,7 @@ TEST( ArrayOfArrays, resizeFromCapacities )
266266
267267 // Resize the ArrayOfArrays from a new list of capacities.
268268 std::array< std::ptrdiff_t , 3 > newCapacities = { 3 , 5 , 2 };
269- arrayOfArrays.resizeFromCapacities < RAJA::loop_exec >( newCapacities.size (), newCapacities.data () );
269+ arrayOfArrays.resizeFromCapacities < RAJA::seq_exec >( newCapacities.size (), newCapacities.data () );
270270
271271 // This will clear any existing arrays.
272272 EXPECT_EQ ( arrayOfArrays.size (), 3 );
@@ -311,7 +311,7 @@ CUDA_TEST( ArrayOfArrays, ChaiBuffer )
311311
312312 // Capture the view on the host. This will copy back the values and sizes since they were previously touched
313313 // on device. It will only touch the values on host.
314- RAJA::forall< RAJA::loop_exec >(
314+ RAJA::forall< RAJA::seq_exec >(
315315 RAJA::TypedRangeSegment< std::ptrdiff_t >( 0 , viewConstSizes.size () ),
316316 [viewConstSizes] ( std::ptrdiff_t const i )
317317 {
@@ -332,7 +332,7 @@ CUDA_TEST( ArrayOfArrays, ChaiBuffer )
332332
333333 // Capture the view on device. Since the values were previously touched on host it will copy them over.
334334 // Both the sizes and offsets are current on device so they are not copied over. Nothing is touched.
335- RAJA::forall< RAJA::loop_exec >(
335+ RAJA::forall< RAJA::seq_exec >(
336336 RAJA::TypedRangeSegment< std::ptrdiff_t >( 0 , viewConst.size () ),
337337 [viewConst] ( std::ptrdiff_t const i )
338338 {
0 commit comments