File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ in this file.
12
12
13
13
The format of this file is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) .
14
14
15
+ ## [ Version ?] - Release date ?
16
+
17
+ ### Fixed
18
+ - Replaced loop\_ work alias with seq\_ work (loop\_ work was removed in RAJA v2024.02.2)
19
+
15
20
## [ Version 0.13.2] - Release date 2024-07-29
16
21
17
22
### Changed
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ constexpr double CARE_DEFAULT_PHASE = -FLT_MAX/2.0;
26
26
27
27
#if CARE_ENABLE_LOOP_FUSER
28
28
29
+ #include " RAJA/RAJA.hpp"
30
+
29
31
#include " umpire/Allocator.hpp"
30
32
#include " umpire/TypedAllocator.hpp"
31
33
@@ -581,11 +583,11 @@ class LoopFuser : public FusedActions {
581
583
RAJA::constant_stride_array_of_objects >;
582
584
#else
583
585
using workgroup_policy = RAJA::WorkGroupPolicy <
584
- RAJA::loop_work ,
586
+ RAJA::seq_work ,
585
587
RAJA::ordered,
586
588
RAJA::ragged_array_of_objects >;
587
589
using workgroup_ordered_policy = RAJA::WorkGroupPolicy <
588
- RAJA::loop_work ,
590
+ RAJA::seq_work ,
589
591
RAJA::ordered,
590
592
RAJA::ragged_array_of_objects >;
591
593
#endif
You can’t perform that action at this time.
0 commit comments