⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 group_inln.h

📁 MPI stands for the Message Passing Interface. Written by the MPI Forum (a large committee comprising
💻 H
字号:
// -*- c++ -*-// // Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana//                         University Research and Technology//                         Corporation.  All rights reserved.// Copyright (c) 2004-2005 The University of Tennessee and The University//                         of Tennessee Research Foundation.  All rights//                         reserved.// Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, //                         University of Stuttgart.  All rights reserved.// Copyright (c) 2004-2005 The Regents of the University of California.//                         All rights reserved.// $COPYRIGHT$// // Additional copyrights may follow// // $HEADER$////// Groups, Contexts, and Communicators//inline intMPI::Group::Get_size() const{  int size;  (void)MPI_Group_size(mpi_group, &size);  return size;}inline intMPI::Group::Get_rank() const {  int rank;  (void)MPI_Group_rank(mpi_group, &rank);  return rank;}inline voidMPI::Group::Translate_ranks (const MPI::Group& group1, int n,				    const int ranks1[], 				    const MPI::Group& group2, int ranks2[]){  (void)MPI_Group_translate_ranks(group1, n, const_cast<int *>(ranks1), group2, const_cast<int *>(ranks2));}inline intMPI::Group::Compare(const MPI::Group& group1, const MPI::Group& group2){  int result;  (void)MPI_Group_compare(group1, group2, &result);  return result;}inline MPI::GroupMPI::Group::Union(const MPI::Group &group1, const MPI::Group &group2){  MPI_Group newgroup;  (void)MPI_Group_union(group1, group2, &newgroup);  return newgroup;}inline MPI::GroupMPI::Group::Intersect(const MPI::Group &group1, const MPI::Group &group2){  MPI_Group newgroup;  (void)MPI_Group_intersection( group1,  group2, &newgroup);  return newgroup;}inline MPI::GroupMPI::Group::Difference(const MPI::Group &group1, const MPI::Group &group2){  MPI_Group newgroup;    (void)MPI_Group_difference(group1, group2, &newgroup);  return newgroup;}inline MPI::GroupMPI::Group::Incl(int n, const int ranks[]) const{  MPI_Group newgroup;  (void)MPI_Group_incl(mpi_group, n, const_cast<int *>(ranks), &newgroup);  return newgroup;}inline MPI::GroupMPI::Group::Excl(int n, const int ranks[]) const{  MPI_Group newgroup;  (void)MPI_Group_excl(mpi_group, n, const_cast<int *>(ranks), &newgroup);  return newgroup;}inline MPI::GroupMPI::Group::Range_incl(int n, const int ranges[][3]) const{  MPI_Group newgroup;  (void)MPI_Group_range_incl(mpi_group, n,#if OMPI_CXX_SUPPORTS_2D_CONST_CAST                             const_cast<int(*)[3]>(ranges), #else                             (int(*)[3]) ranges,#endif                             &newgroup);  return newgroup;}inline MPI::GroupMPI::Group::Range_excl(int n, const int ranges[][3]) const{  MPI_Group newgroup;  (void)MPI_Group_range_excl(mpi_group, n,#if OMPI_CXX_SUPPORTS_2D_CONST_CAST                             const_cast<int(*)[3]>(ranges),#else                             (int(*)[3]) ranges,#endif                             &newgroup);  return newgroup;}inline voidMPI::Group::Free(){  (void)MPI_Group_free(&mpi_group);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -