33 #define sgid_alltoallv nrnmpi_long_alltoallv
35 #define sgid_alltoallv nrnmpi_int_alltoallv
38 #define HAVEWANT_t sgid_t
39 #define HAVEWANT_alltoallv sgid_alltoallv
40 #define HAVEWANT2Int std::map<sgid_t, int>
51 size_t total_nsrc = 0, total_ntar = 0;
52 for (
int tid = 0; tid < ngroup; ++tid) {
54 total_nsrc += si.
src_sid.size();
55 total_ntar += si.tar_sid.size();
65 std::map<sgid_t, SidInfo> src2info;
66 std::map<sgid_t, SidInfo> tar2info;
68 int src2info_size = 0, tar2info_size = 0;
69 for (
int tid = 0; tid < ngroup; ++tid) {
73 for (
size_t i = 0;
i < si.src_sid.size(); ++
i) {
76 sidinfo.
tids_.push_back(tid);
78 src2info[sid] = sidinfo;
79 have[src2info_size] = sid;
84 for (
size_t i = 0;
i < si.tar_sid.size(); ++
i) {
86 if (tar2info.find(sid) == tar2info.end()) {
88 want[tar2info_size] = sid;
91 SidInfo& sidinfo = tar2info[sid];
92 sidinfo.
tids_.push_back(tid);
118 assert(src2info.find(sgid) != src2info.end());
123 sgid_t sgid = recv_from_have[
i];
124 assert(tar2info.find(sgid) != tar2info.end());
128 printf(
"%d mpi outsrccnt_, outsrcdspl_, insrccnt, insrcdspl_\n",
nrnmpi_myid);
130 printf(
"%d : %d %d %d %d\n",
153 SidInfo& sidinfo = src2info[sgid];
155 int tid = sidinfo.
tids_[0];
156 int setup_info_index = sidinfo.
indices_[0];
167 ttd.outsrc_indices.push_back(
i);
174 for (
int tid = 0; tid < ngroup; ++tid) {
176 std::map<int, int> data2gather_indices;
177 for (
size_t i = 0;
i < ttd.src_indices.size(); ++
i) {
178 data2gather_indices[ttd.src_indices[
i]] =
i;
181 for (
size_t i = 0;
i < ttd.outsrc_indices.size(); ++
i) {
182 ttd.gather2outsrc_indices[
i] = data2gather_indices[ttd.gather2outsrc_indices[
i]];
195 sgid_t sgid = recv_from_have[
i];
196 SidInfo& sidinfo = tar2info[sgid];
198 for (
size_t j = 0; j < sidinfo.
tids_.size(); ++j) {
199 int tid = sidinfo.
tids_[j];
208 for (
int tid = 0; tid < ngroup; ++tid) {
211 for (
size_t i = 0;
i < si.
src_sid.size(); ++
i) {
212 printf(
"%d %d src sid=%d v_index=%d %g\n",
220 printf(
"%d %d src sid=i%zd tar_index=%d %g\n",
230 delete[] send_to_want;
231 delete[] recv_from_have;
244 ttd.src_gather.resize(sti.src_sid.size());
245 ttd.src_indices.resize(sti.src_sid.size());
246 ttd.insrc_indices.resize(sti.tar_sid.size());
247 ttd.tar_indices.resize(sti.tar_sid.size());
250 for (
size_t i = 0;
i < sti.src_sid.size(); ++
i) {
252 sti.src_index[
i] = int(d - nt.
_data);
256 for (
size_t i = 0;
i < sti.tar_sid.size(); ++
i) {
260 sti.tar_index[
i] = int(d - nt.
_data);
267 ttd.src_indices = sti.src_index;
268 ttd.tar_indices = sti.tar_index;