Skip to content

Commit

Permalink
Fix the communicator group categorization
Browse files Browse the repository at this point in the history
  • Loading branch information
thoasm committed Jul 10, 2024
1 parent 48f1ecc commit 7ad4e69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cuda/components/cooperative_groups.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ struct is_synchronizable_group_impl : std::false_type {};


template <typename T>
struct is_communicator_group_impl : std::true_type {};
struct is_communicator_group_impl : std::false_type {};

} // namespace detail

Expand Down
2 changes: 1 addition & 1 deletion dpcpp/components/cooperative_groups.dp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ struct is_synchronizable_group_impl : std::false_type {};


template <typename T>
struct is_communicator_group_impl : std::true_type {};
struct is_communicator_group_impl : std::false_type {};


} // namespace detail
Expand Down
2 changes: 1 addition & 1 deletion hip/components/cooperative_groups.hip.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ struct is_synchronizable_group_impl : std::false_type {};


template <typename T>
struct is_communicator_group_impl : std::true_type {};
struct is_communicator_group_impl : std::false_type {};

} // namespace detail

Expand Down

0 comments on commit 7ad4e69

Please sign in to comment.