//============================================================================ // Copyright (c) Kitware, Inc. // All rights reserved. // See LICENSE.txt for details. // // This software is distributed WITHOUT ANY WARRANTY; without even // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR // PURPOSE. See the above copyright notice for more information. //============================================================================ #ifndef vtk_m_cont_AssignerMultiBlock_h #define vtk_m_cont_AssignerMultiBlock_h #include #include #include #include #include #include #ifdef VTKM_MSVC #pragma warning(push) // disable C4275: non-dll interface base class warnings #pragma warning(disable : 4275) #endif namespace vtkm { namespace cont { class MultiBlock; /// \brief Assigner for `MultiBlock` blocks. /// /// `AssignerMultiBlock` is a `vtkmdiy::StaticAssigner` implementation that uses /// `MultiBlock`'s block distribution to build global-id/rank associations /// needed for several `diy` operations. /// It uses a contiguous assignment strategy to map blocks to global ids i.e. /// blocks on rank 0 come first, then rank 1, etc. Any rank may have 0 blocks. /// /// AssignerMultiBlock uses collectives in the constructor hence it is /// essential it gets created on all ranks irrespective of whether the rank has /// any blocks. /// class VTKM_CONT_EXPORT AssignerMultiBlock : public vtkmdiy::StaticAssigner { public: /// Initialize the assigner using a multiblock dataset. /// This may initialize collective operations to populate the assigner with /// information about blocks on all ranks. VTKM_CONT AssignerMultiBlock(const vtkm::cont::MultiBlock& mb); VTKM_CONT AssignerMultiBlock(vtkm::Id num_blocks); ///@{ /// vtkmdiy::Assigner API implementation. VTKM_CONT void local_gids(int rank, std::vector& gids) const override; VTKM_CONT int rank(int gid) const override; //@} private: std::vector IScanBlockCounts; }; } } #ifdef VTKM_MSVC #pragma warning(pop) #endif #endif