source: XIOS/dev/branch_openmp/extern/ep_dev/ep_create.cpp @ 1511

Last change on this file since 1511 was 1511, checked in by yushan, 6 years ago

save dev

File size: 3.2 KB
RevLine 
[1381]1/*!
2   \file ep_create.cpp
3   \since 2 may 2016
4
5   \brief Definitions of MPI endpoint function: MPI_Comm_create_endpoints
6 */
7
8#include "ep_lib.hpp"
9#include <mpi.h>
10#include "ep_declaration.hpp"
11#include "ep_mpi.hpp"
12
13using namespace std;
14
15namespace ep_lib {
[1499]16
17  /*!
18    Dynamic creation of endpoints for each MPI process.
19    The output of this function is an array of communicator handles of length num_ep, where each handle
20    corresponds to a nez local randk in the output communicator.
21    Once created, endpoints behave as MPI processes.
22    \param [in] mpi_comm Parent MPI communicator.
23    \param [in] num_ep Number of endpoints per process.
24    \param [out] info Information of the EP creation.
25    \param [out] out_comm_hdls Handles of EP communicators.
26  */
[1381]27 
28  int MPI_Comm_create_endpoints(void* base_comm_ptr, int num_ep, MPI_Info info, MPI_Comm *& out_comm_hdls)
29  {
30
31    int base_rank;
32    int base_size;
33   
34    ::MPI_Comm mpi_base_comm = to_mpi_comm(base_comm_ptr);
35
36    ::MPI_Comm_size(mpi_base_comm, &base_size);  // ep_lib::mpi_comm_size
37    ::MPI_Comm_rank(mpi_base_comm, &base_rank);  // ep_lib::mpi_comm_rank
38                    // parent_comm can also be endpoints communicators
[1499]39
[1381]40    std::vector<int> recv_num_ep(base_size);
41
42    out_comm_hdls = new MPI_Comm[num_ep];
43
44    for (int idx = 0; idx < num_ep; ++idx)
45    {
[1500]46      out_comm_hdls[idx] = new ep_comm;
47      out_comm_hdls[idx]->is_ep = true;
48      out_comm_hdls[idx]->is_intercomm = false;
49      out_comm_hdls[idx]->ep_comm_ptr = new ep_communicator;     
50      *(static_cast< ::MPI_Comm*>(out_comm_hdls[idx]->mpi_comm)) = *(static_cast< ::MPI_Comm*>(base_comm_ptr));
51      out_comm_hdls[idx]->ep_comm_ptr->comm_list = out_comm_hdls;
52      out_comm_hdls[idx]->ep_comm_ptr->comm_label = 0;
[1381]53    }
54
55    ::MPI_Allgather(&num_ep, 1, to_mpi_type(MPI_INT), &recv_num_ep[0], 1, to_mpi_type(MPI_INT), mpi_base_comm);
56
57
58    int sum = 0;  // representing total ep number of process with smaller rank
59    for (int i = 0; i < base_rank; ++i) {sum += recv_num_ep[i]; }
60
61    int ep_size = std::accumulate(recv_num_ep.begin(), recv_num_ep.end(), 0);
62
[1500]63    out_comm_hdls[0]->ep_barrier = new ep_barrier(num_ep);
64    out_comm_hdls[0]->my_buffer = new BUFFER;
[1381]65
[1503]66    out_comm_hdls[0]->ep_rank_map = new EP_RANK_MAP;
[1381]67
[1503]68
[1381]69    for (int i = 1; i < num_ep; i++)
70    {
[1500]71      out_comm_hdls[i]->ep_barrier = out_comm_hdls[0]->ep_barrier;
72      out_comm_hdls[i]->my_buffer  = out_comm_hdls[0]->my_buffer;
[1503]73      out_comm_hdls[i]->ep_rank_map= out_comm_hdls[0]->ep_rank_map;
[1381]74    }
75
76
77    for (int i = 0; i < num_ep; i++)
78    {
[1500]79      out_comm_hdls[i]->ep_comm_ptr->size_rank_info[0] = std::make_pair(sum+i, ep_size);
80      out_comm_hdls[i]->ep_comm_ptr->size_rank_info[1] = std::make_pair(i, num_ep);
81      out_comm_hdls[i]->ep_comm_ptr->size_rank_info[2] = std::make_pair(base_rank, base_size);
[1381]82
[1500]83      out_comm_hdls[i]->ep_comm_ptr->message_queue = new Message_list;
[1381]84    }
85
86
87    int ind = 0;
88
89    for(int i=0; i<base_size; i++)
90    {
91      for(int j=0; j<recv_num_ep[i]; j++)
92      {
[1503]93        //out_comm_hdls[0]->rank_map->at(ind) = make_pair(j, i);
94        out_comm_hdls[0]->ep_rank_map->insert(std::pair< int, std::pair<int,int> >(ind, j, i));
[1381]95        ind++;
96      }
97    }
98
99    return 0;
100
101  } //MPI_Comm_create_endpoints
102
[1511]103 
[1381]104
105} //namespace ep_lib
Note: See TracBrowser for help on using the repository browser.