Skip to content

Commit 3ce01e5

Browse files
authored
Merge branch 'develop' into bugfix/dayton8/chunked_loop_macros
2 parents a5afc19 + 5f833ec commit 3ce01e5

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ in this file.
1212

1313
The format of this file is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1414

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+
1520
## [Version 0.13.2] - Release date 2024-07-29
1621

1722
### Changed

src/care/LoopFuser.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ constexpr double CARE_DEFAULT_PHASE = -FLT_MAX/2.0;
2626

2727
#if CARE_ENABLE_LOOP_FUSER
2828

29+
#include "RAJA/RAJA.hpp"
30+
2931
#include "umpire/Allocator.hpp"
3032
#include "umpire/TypedAllocator.hpp"
3133

@@ -581,11 +583,11 @@ class LoopFuser : public FusedActions {
581583
RAJA::constant_stride_array_of_objects >;
582584
#else
583585
using workgroup_policy = RAJA::WorkGroupPolicy <
584-
RAJA::loop_work,
586+
RAJA::seq_work,
585587
RAJA::ordered,
586588
RAJA::ragged_array_of_objects >;
587589
using workgroup_ordered_policy = RAJA::WorkGroupPolicy <
588-
RAJA::loop_work,
590+
RAJA::seq_work,
589591
RAJA::ordered,
590592
RAJA::ragged_array_of_objects >;
591593
#endif

0 commit comments

Comments
 (0)