53_callMetisWith2Processors(
const Int32 ncon,
const bool need_part,
55 MetisCall& metis_call)
57 Int32 nb_rank = m_parallel_mng->commSize();
58 Int32 my_rank = m_parallel_mng->commRank();
62 int comm_0_size = nb_rank / 2 + nb_rank % 2;
63 int comm_1_size = nb_rank / 2;
64 int comm_0_io_rank = 0;
65 int comm_1_io_rank = comm_0_size;
67 for (
int i = 0; i < nb_rank + 1; ++i) {
68 half_vtxdist[i] = vtxdist[i];
74 if (my_rank >= comm_0_size) {
76 for (
int i = 0; i < comm_1_size + 1; ++i) {
77 half_vtxdist[i] = vtxdist[i + comm_0_size] - vtxdist[comm_0_size];
85 metis_gather.
gatherGraph(need_part, half_vtxdist, ncon, my_graph, metis_graph);
88 if (my_rank == comm_0_io_rank || my_rank == comm_1_io_rank) {
96 metis_vtxdist[1] = vtxdist[comm_0_size];
97 metis_vtxdist[2] = vtxdist[vtxdist.
size() - 1];
101 if (metis_pm.
get()) {
103 ierr = metis_call(metis_pm.
get(), metis_graph_view, metis_vtxdist);
109 metis_gather.
scatterPart(half_vtxdist, metis_graph.part, my_graph.part);
118callPartKway(
const bool print_digest,
const bool gather,
119 idx_t *vtxdist, idx_t *xadj, idx_t *adjncy, idx_t *vwgt,
120 idx_t *adjwgt, idx_t *wgtflag, idx_t *numflag, idx_t *ncon, idx_t *nparts,
121 real_t *tpwgts, real_t *ubvec, idx_t *options, idx_t *edgecut, idx_t *part)
124 Int32 nb_rank = m_parallel_mng->commSize();
125 Int32 my_rank = m_parallel_mng->commRank();
130 MPI_Comm graph_comm =
static_cast<MPI_Comm
>(pm->
communicator());
137 idx_t* adjncy_data = graph.adjncy.data();
138 idx_t* adjwgt_data = graph.adjwgt.data();
140 adjncy_data = &null_idx;
142 adjwgt_data = &null_idx;
143 return ParMETIS_V3_PartKway(graph_vtxdist.data(), graph.xadj.data(),
144 adjncy_data, graph.vwgt.data(),
145 adjwgt_data, wgtflag, numflag, ncon, nparts, tpwgts,
146 ubvec, options, edgecut, graph.part.data(), &graph_comm);
155 idx_t options2[METIS_NOPTIONS];
156 METIS_SetDefaultOptions(options2);
157 options2[METIS_OPTION_CTYPE] = METIS_CTYPE_SHEM;
158 options2[METIS_OPTION_UFACTOR] = 30;
159 options2[METIS_OPTION_NUMBERING] = 0;
160 options2[METIS_OPTION_MINCONN] = 0;
161 options2[METIS_OPTION_OBJTYPE] = METIS_OBJTYPE_VOL;
162 options2[METIS_OPTION_SEED] = 25;
163 pwarning() <<
"MetisWrapper: using user 'imbalance_factor' is not yet implemented. Using defaut value 30";
166 idx_t nvtxs = graph_vtxdist[1];
167 return METIS_PartGraphKway(&nvtxs , ncon, graph.xadj.data(),
168 graph.adjncy.data(), graph.vwgt.data(), graph.vsize.data(),
169 graph.adjwgt.data(), nparts, tpwgts,
170 ubvec, options2, edgecut, graph.part.data());
184 my_graph.have_vsize =
false;
185 my_graph.have_adjwgt =
true;
190 ncon, nparts, tpwgts, ubvec,
nullptr, options);
192 info() <<
"signature des entrees Metis = " << digest;
196 if (gather && nb_rank > 2) {
198 info() <<
"Partitioning metis : re-grouping " << nb_rank <<
" -> 2 rank";
202 info() <<
"Partitioning metis : nb rank = " << nb_rank;
203 MetisCall& metis_call = (nb_rank == 1) ? partkway_seq : partkway;
204 ierr = metis_call(m_parallel_mng, my_graph, offset);
207 info() <<
"End Partitioning metis";
212 info() <<
"hash for Metis output = " << digest;
223callAdaptiveRepart(
const bool print_digest,
const bool gather,
224 idx_t *vtxdist, idx_t *xadj, idx_t *adjncy, idx_t *vwgt,
225 idx_t *vsize, idx_t *adjwgt, idx_t *wgtflag, idx_t *numflag, idx_t *ncon,
226 idx_t *nparts, real_t *tpwgts, real_t *ubvec, real_t *ipc2redist,
227 idx_t *options, idx_t *edgecut, idx_t *part)
230 Int32 nb_rank = m_parallel_mng->commSize();
231 Int32 my_rank = m_parallel_mng->commRank();
236 MPI_Comm graph_comm =
static_cast<MPI_Comm
>(pm->
communicator());
237 return ParMETIS_V3_AdaptiveRepart(graph_vtxdist.data(), graph.xadj.data(),
238 graph.adjncy.data(), graph.vwgt.data(),
239 graph.vsize.data(), graph.adjwgt.data(),
240 wgtflag, numflag, ncon, nparts, tpwgts, ubvec,
241 ipc2redist, options, edgecut,
242 graph.part.data(), &graph_comm);
251 idx_t options2[METIS_NOPTIONS];
252 METIS_SetDefaultOptions(options2);
253 options2[METIS_OPTION_CTYPE] = METIS_CTYPE_SHEM;
254 options2[METIS_OPTION_UFACTOR] = 30;
255 options2[METIS_OPTION_NUMBERING] = 0;
256 options2[METIS_OPTION_MINCONN] = 0;
257 options2[METIS_OPTION_OBJTYPE] = METIS_OBJTYPE_VOL;
258 options2[METIS_OPTION_SEED] = 25;
259 pwarning() <<
"MetisWrapper: using user 'imbalance_factor' is not yet implemented. Using defaut value 30";
261 idx_t nvtxs = graph_vtxdist[1];
262 return METIS_PartGraphKway(&nvtxs , ncon, graph.xadj.data(),
263 graph.adjncy.data(), graph.vwgt.data(), graph.vsize.data(),
264 graph.adjwgt.data(), nparts, tpwgts,
265 ubvec, options2, edgecut, graph.part.data());
281 my_graph.have_vsize =
true;
282 my_graph.have_adjwgt =
true;
288 ncon, nparts, tpwgts, ubvec,
nullptr, options);
290 info() <<
"signature des entrees Metis = " << digest;
294 if (gather && nb_rank > 2) {
295 info() <<
"Partionnement metis : regroupement " << nb_rank <<
" -> 2 processeurs";
299 info() <<
"Partionnement metis : nb processeurs = " << nb_rank;
300 MetisCall& metis_call = (nb_rank == 1) ? repart_seq_func : repart_func;
301 ierr = metis_call(m_parallel_mng, my_graph, offset);
308 info() <<
"signature des sorties Metis = " << digest;
String computeInputDigest(const bool need_part, const int nb_options, const MetisGraphView &my_graph, const idx_t *vtxdist, const idx_t *wgtflag, const idx_t *numflag, const idx_t *ncon, const idx_t *nparts, const real_t *tpwgts, const real_t *ubvec, const real_t *ipc2redist, const idx_t *options)