From 7ad4e69643066ff7870b8ca13b9c79a0885f4eb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gr=C3=BCtzmacher?= Date: Wed, 10 Jul 2024 17:54:53 +0200 Subject: [PATCH] Fix the communicator group categorization --- cuda/components/cooperative_groups.cuh | 2 +- dpcpp/components/cooperative_groups.dp.hpp | 2 +- hip/components/cooperative_groups.hip.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cuda/components/cooperative_groups.cuh b/cuda/components/cooperative_groups.cuh index c4ceca9e409..983ec32f9ac 100644 --- a/cuda/components/cooperative_groups.cuh +++ b/cuda/components/cooperative_groups.cuh @@ -113,7 +113,7 @@ struct is_synchronizable_group_impl : std::false_type {}; template -struct is_communicator_group_impl : std::true_type {}; +struct is_communicator_group_impl : std::false_type {}; } // namespace detail diff --git a/dpcpp/components/cooperative_groups.dp.hpp b/dpcpp/components/cooperative_groups.dp.hpp index c758cf42710..33a107ef3f5 100644 --- a/dpcpp/components/cooperative_groups.dp.hpp +++ b/dpcpp/components/cooperative_groups.dp.hpp @@ -101,7 +101,7 @@ struct is_synchronizable_group_impl : std::false_type {}; template -struct is_communicator_group_impl : std::true_type {}; +struct is_communicator_group_impl : std::false_type {}; } // namespace detail diff --git a/hip/components/cooperative_groups.hip.hpp b/hip/components/cooperative_groups.hip.hpp index d3dbc44a5c8..2107c081147 100644 --- a/hip/components/cooperative_groups.hip.hpp +++ b/hip/components/cooperative_groups.hip.hpp @@ -101,7 +101,7 @@ struct is_synchronizable_group_impl : std::false_type {}; template -struct is_communicator_group_impl : std::true_type {}; +struct is_communicator_group_impl : std::false_type {}; } // namespace detail