Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add Reduce SMP collective from MVAPICH2
[simgrid.git] / src / smpi / colls / smpi_mvapich2_selector.c
1 /* selector for collective algorithms based on mvapich decision logic */
2
3 /* Copyright (c) 2009-2010, 2013-2014. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is xbt_free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "colls_private.h"
10
11 #include "smpi_mvapich2_selector_stampede.h"
12
13
14
15 int smpi_coll_tuned_alltoall_mvapich2( void *sendbuf, int sendcount, 
16     MPI_Datatype sendtype,
17     void* recvbuf, int recvcount,
18     MPI_Datatype recvtype,
19     MPI_Comm comm)
20 {
21
22   if(mv2_alltoall_table_ppn_conf==NULL)
23     init_mv2_alltoall_tables_stampede();
24
25   int sendtype_size, recvtype_size, nbytes, comm_size;
26   char * tmp_buf = NULL;
27   int mpi_errno=MPI_SUCCESS;
28   int range = 0;
29   int range_threshold = 0;
30   int conf_index = 0;
31   comm_size =  smpi_comm_size(comm);
32
33   sendtype_size=smpi_datatype_size(sendtype);
34   recvtype_size=smpi_datatype_size(recvtype);
35   nbytes = sendtype_size * sendcount;
36
37   /* check if safe to use partial subscription mode */
38
39   /* Search for the corresponding system size inside the tuning table */
40   while ((range < (mv2_size_alltoall_tuning_table[conf_index] - 1)) &&
41       (comm_size > mv2_alltoall_thresholds_table[conf_index][range].numproc)) {
42       range++;
43   }
44   /* Search for corresponding inter-leader function */
45   while ((range_threshold < (mv2_alltoall_thresholds_table[conf_index][range].size_table - 1))
46       && (nbytes >
47   mv2_alltoall_thresholds_table[conf_index][range].algo_table[range_threshold].max)
48   && (mv2_alltoall_thresholds_table[conf_index][range].algo_table[range_threshold].max != -1)) {
49       range_threshold++;
50   }
51   MV2_Alltoall_function = mv2_alltoall_thresholds_table[conf_index][range].algo_table[range_threshold]
52                                                                                       .MV2_pt_Alltoall_function;
53
54   if(sendbuf != MPI_IN_PLACE) {
55       mpi_errno = MV2_Alltoall_function(sendbuf, sendcount, sendtype,
56           recvbuf, recvcount, recvtype,
57           comm);
58   } else {
59       range_threshold = 0;
60       if(nbytes <
61           mv2_alltoall_thresholds_table[conf_index][range].in_place_algo_table[range_threshold].min
62           ||nbytes > mv2_alltoall_thresholds_table[conf_index][range].in_place_algo_table[range_threshold].max
63       ) {
64           tmp_buf = (char *)xbt_malloc( comm_size * recvcount * recvtype_size );
65           mpi_errno = smpi_datatype_copy((char *)recvbuf,
66               comm_size*recvcount, recvtype,
67               (char *)tmp_buf,
68               comm_size*recvcount, recvtype);
69
70           mpi_errno = MV2_Alltoall_function(tmp_buf, recvcount, recvtype,
71               recvbuf, recvcount, recvtype,
72               comm );
73           xbt_free(tmp_buf);
74       } else {
75           mpi_errno = MPIR_Alltoall_inplace_MV2(sendbuf, sendcount, sendtype,
76               recvbuf, recvcount, recvtype,
77               comm );
78       }
79   }
80
81
82   return (mpi_errno);
83 }
84
85
86
87 int smpi_coll_tuned_allgather_mvapich2(void *sendbuf, int sendcount, MPI_Datatype sendtype,
88     void *recvbuf, int recvcount, MPI_Datatype recvtype,
89     MPI_Comm comm)
90 {
91
92   int mpi_errno = MPI_SUCCESS;
93   int nbytes = 0, comm_size, recvtype_size;
94   int range = 0;
95   int partial_sub_ok = 0;
96   int conf_index = 0;
97   int range_threshold = 0;
98   int is_two_level = 0;
99   int local_size = -1;
100   MPI_Comm shmem_comm;
101   //MPI_Comm *shmem_commptr=NULL;
102   /* Get the size of the communicator */
103   comm_size = smpi_comm_size(comm);
104   recvtype_size=smpi_datatype_size(recvtype);
105   nbytes = recvtype_size * recvcount;
106
107   if(mv2_allgather_table_ppn_conf==NULL)
108     init_mv2_allgather_tables_stampede();
109     
110   if(smpi_comm_get_leaders_comm(comm)==MPI_COMM_NULL){
111     smpi_comm_init_smp(comm);
112   }
113
114   int i;
115   if (smpi_comm_is_uniform(comm)){
116     shmem_comm = smpi_comm_get_intra_comm(comm);
117     local_size = smpi_comm_size(shmem_comm);
118     i = 0;
119     if (mv2_allgather_table_ppn_conf[0] == -1) {
120       // Indicating user defined tuning
121       conf_index = 0;
122       goto conf_check_end;
123     }
124     do {
125       if (local_size == mv2_allgather_table_ppn_conf[i]) {
126         conf_index = i;
127         partial_sub_ok = 1;
128         break;
129       }
130       i++;
131     } while(i < mv2_allgather_num_ppn_conf);
132   }
133   conf_check_end:
134   if (partial_sub_ok != 1) {
135     conf_index = 0;
136   }
137   
138   /* Search for the corresponding system size inside the tuning table */
139   while ((range < (mv2_size_allgather_tuning_table[conf_index] - 1)) &&
140       (comm_size >
141   mv2_allgather_thresholds_table[conf_index][range].numproc)) {
142       range++;
143   }
144   /* Search for corresponding inter-leader function */
145   while ((range_threshold <
146       (mv2_allgather_thresholds_table[conf_index][range].size_inter_table - 1))
147       && (nbytes > mv2_allgather_thresholds_table[conf_index][range].inter_leader[range_threshold].max)
148       && (mv2_allgather_thresholds_table[conf_index][range].inter_leader[range_threshold].max !=
149           -1)) {
150       range_threshold++;
151   }
152
153   /* Set inter-leader pt */
154   MV2_Allgather_function =
155       mv2_allgather_thresholds_table[conf_index][range].inter_leader[range_threshold].
156       MV2_pt_Allgather_function;
157
158   is_two_level =  mv2_allgather_thresholds_table[conf_index][range].two_level[range_threshold];
159
160   /* intracommunicator */
161   if(is_two_level ==1){
162     if(partial_sub_ok ==1){
163       if (smpi_comm_is_blocked(comm)){
164       mpi_errno = MPIR_2lvl_Allgather_MV2(sendbuf, sendcount, sendtype,
165                             recvbuf, recvcount, recvtype,
166                             comm);
167       }else{
168       mpi_errno = smpi_coll_tuned_allgather_mpich(sendbuf, sendcount, sendtype,
169                             recvbuf, recvcount, recvtype,
170                             comm);
171       }
172     } else {
173       mpi_errno = MPIR_Allgather_RD_MV2(sendbuf, sendcount, sendtype,
174           recvbuf, recvcount, recvtype,
175           comm);
176     }
177   } else if(MV2_Allgather_function == &MPIR_Allgather_Bruck_MV2
178       || MV2_Allgather_function == &MPIR_Allgather_RD_MV2
179       || MV2_Allgather_function == &MPIR_Allgather_Ring_MV2) {
180       mpi_errno = MV2_Allgather_function(sendbuf, sendcount, sendtype,
181           recvbuf, recvcount, recvtype,
182           comm);
183   }else{
184       return MPI_ERR_OTHER;
185   }
186
187   return mpi_errno;
188 }
189
190
191 int smpi_coll_tuned_gather_mvapich2(void *sendbuf,
192     int sendcnt,
193     MPI_Datatype sendtype,
194     void *recvbuf,
195     int recvcnt,
196     MPI_Datatype recvtype,
197     int root, MPI_Comm  comm)
198 {
199   if(mv2_gather_thresholds_table==NULL)
200     init_mv2_gather_tables_stampede();
201
202   int mpi_errno = MPI_SUCCESS;
203   int range = 0;
204   int range_threshold = 0;
205   int range_intra_threshold = 0;
206   int nbytes = 0;
207   int comm_size = 0;
208   int recvtype_size, sendtype_size;
209   int rank = -1;
210   comm_size = smpi_comm_size(comm);
211   rank = smpi_comm_rank(comm);
212
213   if (rank == root) {
214       recvtype_size=smpi_datatype_size(recvtype);
215       nbytes = recvcnt * recvtype_size;
216   } else {
217       sendtype_size=smpi_datatype_size(sendtype);
218       nbytes = sendcnt * sendtype_size;
219   }
220
221   /* Search for the corresponding system size inside the tuning table */
222   while ((range < (mv2_size_gather_tuning_table - 1)) &&
223       (comm_size > mv2_gather_thresholds_table[range].numproc)) {
224       range++;
225   }
226   /* Search for corresponding inter-leader function */
227   while ((range_threshold < (mv2_gather_thresholds_table[range].size_inter_table - 1))
228       && (nbytes >
229   mv2_gather_thresholds_table[range].inter_leader[range_threshold].max)
230   && (mv2_gather_thresholds_table[range].inter_leader[range_threshold].max !=
231       -1)) {
232       range_threshold++;
233   }
234
235   /* Search for corresponding intra node function */
236   while ((range_intra_threshold < (mv2_gather_thresholds_table[range].size_intra_table - 1))
237       && (nbytes >
238   mv2_gather_thresholds_table[range].intra_node[range_intra_threshold].max)
239   && (mv2_gather_thresholds_table[range].intra_node[range_intra_threshold].max !=
240       -1)) {
241       range_intra_threshold++;
242   }
243   
244     if (smpi_comm_is_blocked(comm) ) {
245         // Set intra-node function pt for gather_two_level 
246         MV2_Gather_intra_node_function = 
247                               mv2_gather_thresholds_table[range].intra_node[range_intra_threshold].
248                               MV2_pt_Gather_function;
249         //Set inter-leader pt 
250         MV2_Gather_inter_leader_function =
251                               mv2_gather_thresholds_table[range].inter_leader[range_threshold].
252                               MV2_pt_Gather_function;
253         // We call Gather function 
254         mpi_errno =
255             MV2_Gather_inter_leader_function(sendbuf, sendcnt, sendtype, recvbuf, recvcnt,
256                                              recvtype, root, comm);
257
258     } else {
259   // Indeed, direct (non SMP-aware)gather is MPICH one
260   mpi_errno = smpi_coll_tuned_gather_mpich(sendbuf, sendcnt, sendtype,
261       recvbuf, recvcnt, recvtype,
262       root, comm);
263   }
264
265   return mpi_errno;
266 }
267
268
269 int smpi_coll_tuned_allgatherv_mvapich2(void *sendbuf, int sendcount, MPI_Datatype sendtype,
270     void *recvbuf, int *recvcounts, int *displs,
271     MPI_Datatype recvtype, MPI_Comm  comm )
272 {
273   int mpi_errno = MPI_SUCCESS;
274   int range = 0, comm_size, total_count, recvtype_size, i;
275   int range_threshold = 0;
276   int nbytes = 0;
277
278   if(mv2_allgatherv_thresholds_table==NULL)
279     init_mv2_allgatherv_tables_stampede();
280
281   comm_size = smpi_comm_size(comm);
282   total_count = 0;
283   for (i = 0; i < comm_size; i++)
284     total_count += recvcounts[i];
285
286   recvtype_size=smpi_datatype_size(recvtype);
287   nbytes = total_count * recvtype_size;
288
289   /* Search for the corresponding system size inside the tuning table */
290   while ((range < (mv2_size_allgatherv_tuning_table - 1)) &&
291       (comm_size > mv2_allgatherv_thresholds_table[range].numproc)) {
292       range++;
293   }
294   /* Search for corresponding inter-leader function */
295   while ((range_threshold < (mv2_allgatherv_thresholds_table[range].size_inter_table - 1))
296       && (nbytes >
297   comm_size * mv2_allgatherv_thresholds_table[range].inter_leader[range_threshold].max)
298   && (mv2_allgatherv_thresholds_table[range].inter_leader[range_threshold].max !=
299       -1)) {
300       range_threshold++;
301   }
302   /* Set inter-leader pt */
303   MV2_Allgatherv_function =
304       mv2_allgatherv_thresholds_table[range].inter_leader[range_threshold].
305       MV2_pt_Allgatherv_function;
306
307   if (MV2_Allgatherv_function == &MPIR_Allgatherv_Rec_Doubling_MV2)
308     {
309       if(!(comm_size & (comm_size - 1)))
310         {
311           mpi_errno =
312               MPIR_Allgatherv_Rec_Doubling_MV2(sendbuf, sendcount,
313                   sendtype, recvbuf,
314                   recvcounts, displs,
315                   recvtype, comm);
316         } else {
317             mpi_errno =
318                 MPIR_Allgatherv_Bruck_MV2(sendbuf, sendcount,
319                     sendtype, recvbuf,
320                     recvcounts, displs,
321                     recvtype, comm);
322         }
323     } else {
324         mpi_errno =
325             MV2_Allgatherv_function(sendbuf, sendcount, sendtype,
326                 recvbuf, recvcounts, displs,
327                 recvtype, comm);
328     }
329
330   return mpi_errno;
331 }
332
333
334
335 int smpi_coll_tuned_allreduce_mvapich2(void *sendbuf,
336     void *recvbuf,
337     int count,
338     MPI_Datatype datatype,
339     MPI_Op op, MPI_Comm comm)
340 {
341
342   int mpi_errno = MPI_SUCCESS;
343   //int rank = 0,
344   int comm_size = 0;
345
346   comm_size = smpi_comm_size(comm);
347   //rank = smpi_comm_rank(comm);
348
349   if (count == 0) {
350       return MPI_SUCCESS;
351   }
352
353   if (mv2_allreduce_thresholds_table == NULL)
354     init_mv2_allreduce_tables_stampede();
355
356   /* check if multiple threads are calling this collective function */
357
358   MPI_Aint sendtype_size = 0;
359   int nbytes = 0;
360   int range = 0, range_threshold = 0, range_threshold_intra = 0;
361   int is_two_level = 0;
362   int is_commutative = 0;
363   MPI_Aint true_lb, true_extent;
364
365   sendtype_size=smpi_datatype_size(datatype);
366   nbytes = count * sendtype_size;
367
368   smpi_datatype_extent(datatype, &true_lb, &true_extent);
369   //MPI_Op *op_ptr;
370   //is_commutative = smpi_op_is_commute(op);
371
372   {
373     /* Search for the corresponding system size inside the tuning table */
374     while ((range < (mv2_size_allreduce_tuning_table - 1)) &&
375         (comm_size > mv2_allreduce_thresholds_table[range].numproc)) {
376         range++;
377     }
378     /* Search for corresponding inter-leader function */
379     /* skip mcast poiters if mcast is not available */
380     if(mv2_allreduce_thresholds_table[range].mcast_enabled != 1){
381         while ((range_threshold < (mv2_allreduce_thresholds_table[range].size_inter_table - 1))
382             && ((mv2_allreduce_thresholds_table[range].
383                 inter_leader[range_threshold].MV2_pt_Allreduce_function
384                 == &MPIR_Allreduce_mcst_reduce_redscat_gather_MV2) ||
385                 (mv2_allreduce_thresholds_table[range].
386                     inter_leader[range_threshold].MV2_pt_Allreduce_function
387                     == &MPIR_Allreduce_mcst_reduce_two_level_helper_MV2)
388             )) {
389             range_threshold++;
390         }
391     }
392     while ((range_threshold < (mv2_allreduce_thresholds_table[range].size_inter_table - 1))
393         && (nbytes >
394     mv2_allreduce_thresholds_table[range].inter_leader[range_threshold].max)
395     && (mv2_allreduce_thresholds_table[range].inter_leader[range_threshold].max != -1)) {
396         range_threshold++;
397     }
398     if(mv2_allreduce_thresholds_table[range].is_two_level_allreduce[range_threshold] == 1){
399         is_two_level = 1;
400     }
401     /* Search for corresponding intra-node function */
402     while ((range_threshold_intra <
403         (mv2_allreduce_thresholds_table[range].size_intra_table - 1))
404         && (nbytes >
405     mv2_allreduce_thresholds_table[range].intra_node[range_threshold_intra].max)
406     && (mv2_allreduce_thresholds_table[range].intra_node[range_threshold_intra].max !=
407         -1)) {
408         range_threshold_intra++;
409     }
410
411     MV2_Allreduce_function = mv2_allreduce_thresholds_table[range].inter_leader[range_threshold]
412                                                                                 .MV2_pt_Allreduce_function;
413
414     MV2_Allreduce_intra_function = mv2_allreduce_thresholds_table[range].intra_node[range_threshold_intra]
415                                                                                     .MV2_pt_Allreduce_function;
416
417     /* check if mcast is ready, otherwise replace mcast with other algorithm */
418     if((MV2_Allreduce_function == &MPIR_Allreduce_mcst_reduce_redscat_gather_MV2)||
419         (MV2_Allreduce_function == &MPIR_Allreduce_mcst_reduce_two_level_helper_MV2)){
420         {
421           MV2_Allreduce_function = &MPIR_Allreduce_pt2pt_rd_MV2;
422         }
423         if(is_two_level != 1) {
424             MV2_Allreduce_function = &MPIR_Allreduce_pt2pt_rd_MV2;
425         }
426     }
427
428     if(is_two_level == 1){
429         // check if shm is ready, if not use other algorithm first
430         if (is_commutative) {
431           if(smpi_comm_get_leaders_comm(comm)==MPI_COMM_NULL){
432             smpi_comm_init_smp(comm);
433           }
434           mpi_errno = MPIR_Allreduce_two_level_MV2(sendbuf, recvbuf, count,
435                                                      datatype, op, comm);
436                 } else {
437         mpi_errno = MPIR_Allreduce_pt2pt_rd_MV2(sendbuf, recvbuf, count,
438             datatype, op, comm);
439         }
440     } else {
441         mpi_errno = MV2_Allreduce_function(sendbuf, recvbuf, count,
442             datatype, op, comm);
443     }
444   }
445
446   //comm->ch.intra_node_done=0;
447
448   return (mpi_errno);
449
450
451 }
452
453
454 int smpi_coll_tuned_alltoallv_mvapich2(void *sbuf, int *scounts, int *sdisps,
455     MPI_Datatype sdtype,
456     void *rbuf, int *rcounts, int *rdisps,
457     MPI_Datatype rdtype,
458     MPI_Comm  comm
459 )
460 {
461
462   if (sbuf == MPI_IN_PLACE) {
463       return smpi_coll_tuned_alltoallv_ompi_basic_linear(sbuf, scounts, sdisps, sdtype,
464           rbuf, rcounts, rdisps,rdtype,
465           comm);
466   } else     /* For starters, just keep the original algorithm. */
467   return smpi_coll_tuned_alltoallv_ring(sbuf, scounts, sdisps, sdtype,
468       rbuf, rcounts, rdisps,rdtype,
469       comm);
470 }
471
472
473 int smpi_coll_tuned_barrier_mvapich2(MPI_Comm  comm)
474 {   
475   return smpi_coll_tuned_barrier_mvapich2_pair(comm);
476 }
477
478
479
480
481 int smpi_coll_tuned_bcast_mvapich2(void *buffer,
482     int count,
483     MPI_Datatype datatype,
484     int root, MPI_Comm comm)
485 {
486
487   //TODO : Bcast really needs intra/inter phases in mvapich. Default to mpich if not available
488   return smpi_coll_tuned_bcast_mpich(buffer, count, datatype, root, comm);
489
490 }
491
492
493
494 int smpi_coll_tuned_reduce_mvapich2( void *sendbuf,
495     void *recvbuf,
496     int count,
497     MPI_Datatype datatype,
498     MPI_Op op, int root, MPI_Comm comm)
499 {
500   if(mv2_reduce_thresholds_table == NULL)
501     init_mv2_reduce_tables_stampede();
502
503   int mpi_errno = MPI_SUCCESS;
504   int range = 0;
505   int range_threshold = 0;
506   int range_intra_threshold = 0;
507   int is_commutative, pof2;
508   int comm_size = 0;
509   int nbytes = 0;
510   int sendtype_size;
511   int is_two_level = 0;
512
513   comm_size = smpi_comm_size(comm);
514   sendtype_size=smpi_datatype_size(datatype);
515   nbytes = count * sendtype_size;
516
517   if (count == 0)
518     return MPI_SUCCESS;
519
520   is_commutative = smpi_op_is_commute(op);
521
522   /* find nearest power-of-two less than or equal to comm_size */
523   for( pof2 = 1; pof2 <= comm_size; pof2 <<= 1 );
524   pof2 >>=1;
525
526
527   /* Search for the corresponding system size inside the tuning table */
528   while ((range < (mv2_size_reduce_tuning_table - 1)) &&
529       (comm_size > mv2_reduce_thresholds_table[range].numproc)) {
530       range++;
531   }
532   /* Search for corresponding inter-leader function */
533   while ((range_threshold < (mv2_reduce_thresholds_table[range].size_inter_table - 1))
534       && (nbytes >
535   mv2_reduce_thresholds_table[range].inter_leader[range_threshold].max)
536   && (mv2_reduce_thresholds_table[range].inter_leader[range_threshold].max !=
537       -1)) {
538       range_threshold++;
539   }
540
541   /* Search for corresponding intra node function */
542   while ((range_intra_threshold < (mv2_reduce_thresholds_table[range].size_intra_table - 1))
543       && (nbytes >
544   mv2_reduce_thresholds_table[range].intra_node[range_intra_threshold].max)
545   && (mv2_reduce_thresholds_table[range].intra_node[range_intra_threshold].max !=
546       -1)) {
547       range_intra_threshold++;
548   }
549
550   /* Set intra-node function pt for reduce_two_level */
551   MV2_Reduce_intra_function =
552       mv2_reduce_thresholds_table[range].intra_node[range_intra_threshold].
553       MV2_pt_Reduce_function;
554   /* Set inter-leader pt */
555   MV2_Reduce_function =
556       mv2_reduce_thresholds_table[range].inter_leader[range_threshold].
557       MV2_pt_Reduce_function;
558
559   if(mv2_reduce_intra_knomial_factor<0)
560     {
561       mv2_reduce_intra_knomial_factor = mv2_reduce_thresholds_table[range].intra_k_degree;
562     }
563   if(mv2_reduce_inter_knomial_factor<0)
564     {
565       mv2_reduce_inter_knomial_factor = mv2_reduce_thresholds_table[range].inter_k_degree;
566     }
567   if(mv2_reduce_thresholds_table[range].is_two_level_reduce[range_threshold] == 1){
568       is_two_level = 1;
569   }
570   /* We call Reduce function */
571   if(is_two_level == 1)
572     {
573        if (is_commutative == 1) {
574          if(smpi_comm_get_leaders_comm(comm)==MPI_COMM_NULL){
575            smpi_comm_init_smp(comm);
576          }
577          mpi_errno = MPIR_Reduce_two_level_helper_MV2(sendbuf, recvbuf, count, 
578                                            datatype, op, root, comm);
579         } else {
580       mpi_errno = MPIR_Reduce_binomial_MV2(sendbuf, recvbuf, count,
581           datatype, op, root, comm);
582       }
583     } else if(MV2_Reduce_function == &MPIR_Reduce_inter_knomial_wrapper_MV2 ){
584         if(is_commutative ==1)
585           {
586             mpi_errno = MV2_Reduce_function(sendbuf, recvbuf, count, 
587                 datatype, op, root, comm);
588           } else {
589               mpi_errno = MPIR_Reduce_binomial_MV2(sendbuf, recvbuf, count,
590                   datatype, op, root, comm);
591           }
592     } else if(MV2_Reduce_function == &MPIR_Reduce_redscat_gather_MV2){
593         if (/*(HANDLE_GET_KIND(op) == HANDLE_KIND_BUILTIN) &&*/ (count >= pof2))
594           {
595             mpi_errno = MV2_Reduce_function(sendbuf, recvbuf, count, 
596                 datatype, op, root, comm);
597           } else {
598               mpi_errno = MPIR_Reduce_binomial_MV2(sendbuf, recvbuf, count,
599                   datatype, op, root, comm);
600           }
601     } else {
602         mpi_errno = MV2_Reduce_function(sendbuf, recvbuf, count, 
603             datatype, op, root, comm);
604     }
605
606
607   return mpi_errno;
608
609 }
610
611
612 int smpi_coll_tuned_reduce_scatter_mvapich2(void *sendbuf, void *recvbuf, int *recvcnts,
613     MPI_Datatype datatype, MPI_Op op,
614     MPI_Comm comm)
615 {
616   int mpi_errno = MPI_SUCCESS;
617   int i = 0, comm_size = smpi_comm_size(comm), total_count = 0, type_size =
618       0, nbytes = 0;
619   int range = 0;
620   int range_threshold = 0;
621   int is_commutative = 0;
622   int *disps = xbt_malloc(comm_size * sizeof (int));
623
624   if(mv2_red_scat_thresholds_table==NULL)
625     init_mv2_reduce_scatter_tables_stampede();
626
627   is_commutative=smpi_op_is_commute(op);
628   for (i = 0; i < comm_size; i++) {
629       disps[i] = total_count;
630       total_count += recvcnts[i];
631   }
632
633   type_size=smpi_datatype_size(datatype);
634   nbytes = total_count * type_size;
635
636   if (is_commutative) {
637
638       /* Search for the corresponding system size inside the tuning table */
639       while ((range < (mv2_size_red_scat_tuning_table - 1)) &&
640           (comm_size > mv2_red_scat_thresholds_table[range].numproc)) {
641           range++;
642       }
643       /* Search for corresponding inter-leader function */
644       while ((range_threshold < (mv2_red_scat_thresholds_table[range].size_inter_table - 1))
645           && (nbytes >
646       mv2_red_scat_thresholds_table[range].inter_leader[range_threshold].max)
647       && (mv2_red_scat_thresholds_table[range].inter_leader[range_threshold].max !=
648           -1)) {
649           range_threshold++;
650       }
651
652       /* Set inter-leader pt */
653       MV2_Red_scat_function =
654           mv2_red_scat_thresholds_table[range].inter_leader[range_threshold].
655           MV2_pt_Red_scat_function;
656
657       mpi_errno = MV2_Red_scat_function(sendbuf, recvbuf,
658           recvcnts, datatype,
659           op, comm);
660   } else {
661       int is_block_regular = 1;
662       for (i = 0; i < (comm_size - 1); ++i) {
663           if (recvcnts[i] != recvcnts[i+1]) {
664               is_block_regular = 0;
665               break;
666           }
667       }
668       int pof2 = 1;
669       while (pof2 < comm_size) pof2 <<= 1;
670       if (pof2 == comm_size && is_block_regular) {
671           /* noncommutative, pof2 size, and block regular */
672           mpi_errno = MPIR_Reduce_scatter_non_comm_MV2(sendbuf, recvbuf,
673               recvcnts, datatype,
674               op, comm);
675       }
676       mpi_errno =  smpi_coll_tuned_reduce_scatter_mpich_rdb(sendbuf, recvbuf,
677           recvcnts, datatype,
678           op, comm);
679   }
680
681   return mpi_errno;
682
683 }
684
685
686
687 int smpi_coll_tuned_scatter_mvapich2(void *sendbuf,
688     int sendcnt,
689     MPI_Datatype sendtype,
690     void *recvbuf,
691     int recvcnt,
692     MPI_Datatype recvtype,
693     int root, MPI_Comm comm_ptr)
694 {
695   int range = 0, range_threshold = 0, range_threshold_intra = 0;
696   int mpi_errno = MPI_SUCCESS;
697   //   int mpi_errno_ret = MPI_SUCCESS;
698   int rank, nbytes, comm_size;
699   int recvtype_size, sendtype_size;
700   int partial_sub_ok = 0;
701   int conf_index = 0;
702   //  int local_size = -1;
703   //  int i;
704   //   MPI_Comm shmem_comm;
705   //    MPID_Comm *shmem_commptr=NULL;
706   if(mv2_scatter_thresholds_table==NULL)
707     init_mv2_scatter_tables_stampede();
708
709   comm_size = smpi_comm_size(comm_ptr);
710
711   rank = smpi_comm_rank(comm_ptr);
712
713   if (rank == root) {
714       sendtype_size=smpi_datatype_size(sendtype);
715       nbytes = sendcnt * sendtype_size;
716   } else {
717       recvtype_size=smpi_datatype_size(recvtype);
718       nbytes = recvcnt * recvtype_size;
719   }
720   /*
721     // check if safe to use partial subscription mode 
722     if (comm_ptr->ch.shmem_coll_ok == 1 && comm_ptr->ch.is_uniform) {
723
724         shmem_comm = comm_ptr->ch.shmem_comm;
725         MPID_Comm_get_ptr(shmem_comm, shmem_commptr);
726         local_size = shmem_commptr->local_size;
727         i = 0;
728         if (mv2_scatter_table_ppn_conf[0] == -1) {
729             // Indicating user defined tuning 
730             conf_index = 0;
731             goto conf_check_end;
732         }
733         do {
734             if (local_size == mv2_scatter_table_ppn_conf[i]) {
735                 conf_index = i;
736                 partial_sub_ok = 1;
737                 break;
738             }
739             i++;
740         } while(i < mv2_scatter_num_ppn_conf);
741     }
742    */
743   if (partial_sub_ok != 1) {
744       conf_index = 0;
745   }
746
747   /* Search for the corresponding system size inside the tuning table */
748   while ((range < (mv2_size_scatter_tuning_table[conf_index] - 1)) &&
749       (comm_size > mv2_scatter_thresholds_table[conf_index][range].numproc)) {
750       range++;
751   }
752   /* Search for corresponding inter-leader function */
753   while ((range_threshold < (mv2_scatter_thresholds_table[conf_index][range].size_inter_table - 1))
754       && (nbytes >
755   mv2_scatter_thresholds_table[conf_index][range].inter_leader[range_threshold].max)
756   && (mv2_scatter_thresholds_table[conf_index][range].inter_leader[range_threshold].max != -1)) {
757       range_threshold++;
758   }
759
760   /* Search for corresponding intra-node function */
761   while ((range_threshold_intra <
762       (mv2_scatter_thresholds_table[conf_index][range].size_intra_table - 1))
763       && (nbytes >
764   mv2_scatter_thresholds_table[conf_index][range].intra_node[range_threshold_intra].max)
765   && (mv2_scatter_thresholds_table[conf_index][range].intra_node[range_threshold_intra].max !=
766       -1)) {
767       range_threshold_intra++;
768   }
769
770   MV2_Scatter_function = mv2_scatter_thresholds_table[conf_index][range].inter_leader[range_threshold]
771                                                                                       .MV2_pt_Scatter_function;
772
773   if(MV2_Scatter_function == &MPIR_Scatter_mcst_wrap_MV2) {
774 #if defined(_MCST_SUPPORT_)
775       if(comm_ptr->ch.is_mcast_ok == 1
776           && mv2_use_mcast_scatter == 1
777           && comm_ptr->ch.shmem_coll_ok == 1) {
778           MV2_Scatter_function = &MPIR_Scatter_mcst_MV2;
779       } else
780 #endif /*#if defined(_MCST_SUPPORT_) */
781         {
782           if(mv2_scatter_thresholds_table[conf_index][range].inter_leader[range_threshold + 1].
783               MV2_pt_Scatter_function != NULL) {
784               MV2_Scatter_function = mv2_scatter_thresholds_table[conf_index][range].inter_leader[range_threshold + 1]
785                                                                                                   .MV2_pt_Scatter_function;
786           } else {
787               /* Fallback! */
788               MV2_Scatter_function = &MPIR_Scatter_MV2_Binomial;
789           }
790         } 
791   }
792
793   if( (MV2_Scatter_function == &MPIR_Scatter_MV2_two_level_Direct) ||
794       (MV2_Scatter_function == &MPIR_Scatter_MV2_two_level_Binomial)) {
795       /* if( comm_ptr->ch.shmem_coll_ok == 1 &&
796              comm_ptr->ch.is_global_block == 1 ) {
797              MV2_Scatter_intra_function = mv2_scatter_thresholds_table[conf_index][range].intra_node[range_threshold_intra]
798                                 .MV2_pt_Scatter_function;
799
800              mpi_errno =
801                    MV2_Scatter_function(sendbuf, sendcnt, sendtype,
802                                         recvbuf, recvcnt, recvtype, root,
803                                         comm_ptr);
804          } else {*/
805       mpi_errno = MPIR_Scatter_MV2_Binomial(sendbuf, sendcnt, sendtype,
806           recvbuf, recvcnt, recvtype, root,
807           comm_ptr);
808
809       //}
810   } else {
811       mpi_errno = MV2_Scatter_function(sendbuf, sendcnt, sendtype,
812           recvbuf, recvcnt, recvtype, root,
813           comm_ptr);
814   }
815   return (mpi_errno);
816 }
817