Teuchos Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Teuchos_CommHelpers.hpp
Go to the documentation of this file.
1 // @HEADER
2 // *****************************************************************************
3 // Teuchos: Common Tools Package
4 //
5 // Copyright 2004 NTESS and the Teuchos contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef TEUCHOS_COMM_HELPERS_HPP
11 #define TEUCHOS_COMM_HELPERS_HPP
12 
13 #include "Teuchos_Comm.hpp"
18 #include "Teuchos_ScalarTraits.hpp"
20 #include "Teuchos_Array.hpp"
22 #include "Teuchos_Workspace.hpp"
23 #include "Teuchos_as.hpp"
24 
25 #ifdef HAVE_TEUCHOS_MPI
27 #endif // HAVE_TEUCHOS_MPI
30 
31 namespace Teuchos {
32 
33 //
34 // Teuchos::Comm Helper Functions
35 //
36 
37 #ifdef HAVE_TEUCHOS_MPI
38 namespace Details {
39 
46 std::string getMpiErrorString (const int errCode);
47 
48 } // namespace Details
49 #endif // HAVE_TEUCHOS_MPI
50 
55 template<typename Ordinal>
56 int rank(const Comm<Ordinal>& comm);
57 
62 template<typename Ordinal>
63 int size(const Comm<Ordinal>& comm);
64 
69 template<typename Ordinal>
70 void barrier(const Comm<Ordinal>& comm);
71 
76 template<typename Ordinal, typename Packet>
77 void broadcast(
78  const Comm<Ordinal>& comm,
79  const int rootRank,
80  const Ordinal count, Packet buffer[]
81  );
82 
87 template<typename Ordinal, typename Packet>
88 void broadcast(
89  const Comm<Ordinal>& comm,
90  const int rootRank,
91  const ArrayView<Packet> &buffer
92  );
93 
98 template<typename Ordinal, typename Packet>
99 void broadcast(
100  const Comm<Ordinal>& comm,
101  const int rootRank, Packet *object
102  );
103 
108 template<typename Ordinal, typename Packet>
109 void broadcast(
110  const Comm<Ordinal>& comm,
111  const int rootRank, const Ptr<Packet> &object
112  );
113 
118 template<typename Ordinal, typename Packet>
119 void broadcast(
120  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
121  const int rootRank, const Ordinal count, Packet*const buffer[]
122  );
123 
128 template<typename Ordinal, typename Packet>
129 void broadcast(
130  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
131  const int rootRank, const ArrayView<const Ptr<Packet> > &buffer
132  );
133 
139 template<typename Ordinal, typename Packet, typename Serializer>
140 void broadcast(
141  const Comm<Ordinal>& comm,
142  const Serializer& serializer,
143  const int rootRank,
144  const Ordinal count, Packet buffer[]
145  );
146 
151 template<typename Ordinal, typename Packet>
152 void
153 gather (const Packet sendBuf[],
154  const Ordinal sendCount,
155  Packet recvBuf[],
156  const Ordinal recvCount,
157  const int root,
158  const Comm<Ordinal>& comm);
159 
164 template<typename Ordinal, typename Packet>
165 void
166 gatherv (const Packet sendBuf[],
167  const Ordinal sendCount,
168  Packet recvBuf[],
169  const Ordinal recvCounts[],
170  const Ordinal displs[],
171  const int root,
172  const Comm<Ordinal>& comm);
173 
179 template<typename Ordinal, typename Packet>
180 void gatherAll(
181  const Comm<Ordinal>& comm,
182  const Ordinal sendCount, const Packet sendBuffer[],
183  const Ordinal recvCount, Packet recvBuffer[]
184  );
185 
191 template<typename Ordinal, typename Packet>
192 void gatherAll(
193  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
194  const Ordinal sendCount, const Packet*const sendBuffer[],
195  const Ordinal recvCount, Packet*const recvBuffer[]
196  );
197 
203 template<typename Ordinal, typename Packet, typename Serializer>
204 void gatherAll(
205  const Comm<Ordinal>& comm,
206  const Serializer& serializer,
207  const Ordinal sendCount, const Packet sendBuffer[],
208  const Ordinal recvCount, Packet recvBuffer[]
209  );
210 
237 template<typename Ordinal, typename Packet>
238 void
239 scatter (const Packet sendBuf[],
240  const Ordinal sendCount,
241  Packet recvBuf[],
242  const Ordinal recvCount,
243  const Ordinal root,
244  const Comm<Ordinal>& comm)
245 {
246  // See Bug 6375; Tpetra does not actually need any specializations
247  // other than Ordinal = int and Packet = int. We may add them later
248  // if there is interest.
250  (true, std::logic_error, "Teuchos::scatter<" <<
252  << ">: Generic version is not yet implemented. This function currently "
253  "only has an implementtion for Ordinal = int and Packet = int. "
254  "See Bug 6375 and Bug 6336.");
255 }
256 
257 template<typename Ordinal, typename Packet>
258 void
259 scatterv (const Packet sendBuf[],
260  const Ordinal sendCounts[],
261  const Ordinal displs[],
262  Packet recvBuf[],
263  const Ordinal recvCount,
264  const Ordinal root,
265  const Comm<Ordinal>& comm)
266 {
267  // See Bug 6375; Tpetra does not actually need any specializations
268  // other than Ordinal = int and Packet = int. We may add them later
269  // if there is interest.
271  (true, std::logic_error, "Teuchos::scatterv<" <<
273  << ">: Generic version is not yet implemented. This function currently "
274  "only has an implementtion for Ordinal = int and Packet = int. "
275  "See Bug 6375 and Bug 6336.");
276 }
277 
305 template<typename Ordinal, typename Packet>
306 void
307 reduce (const Packet sendBuf[],
308  Packet recvBuf[],
309  const Ordinal count,
310  const EReductionType reductType,
311  const Ordinal root,
312  const Comm<Ordinal>& comm);
313 
336 template<typename Ordinal, typename Packet>
337 void reduceAll(
338  const Comm<Ordinal>& comm, const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
339  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
340  );
341 
347 template<typename Ordinal, typename Packet>
348 void reduceAll(
349  const Comm<Ordinal>& comm, const EReductionType reductType,
350  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
351  );
352 
358 template<typename Ordinal, typename Packet>
359 void reduceAll(
360  const Comm<Ordinal>& comm, const EReductionType reductType,
361  const Packet &send, const Ptr<Packet> &globalReduct
362  );
363 
369 template<typename Ordinal, typename Packet>
370 void reduceAll(
371  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
372  const ReferenceTypeReductionOp<Ordinal,Packet> &reductOp,
373  const Ordinal count, const Packet*const sendBuffer[], Packet*const globalReducts[]
374  );
375 
381 template<typename Ordinal, typename Packet, typename Serializer>
382 void reduceAll(
383  const Comm<Ordinal>& comm,
384  const Serializer& serializer,
385  const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
386  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
387  );
388 
394 template<typename Ordinal, typename Packet, typename Serializer>
395 void reduceAll(
396  const Comm<Ordinal>& comm,
397  const Serializer& serializer,
398  const EReductionType reductType,
399  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
400  );
401 
407 template<typename Ordinal, typename Packet>
408 void scan(
409  const Comm<Ordinal>& comm, const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
410  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
411  );
412 
418 template<typename Ordinal, typename Packet>
419 void scan(
420  const Comm<Ordinal>& comm, const EReductionType reductType,
421  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
422  );
423 
429 template<typename Ordinal, typename Packet>
430 void scan(
431  const Comm<Ordinal>& comm, const EReductionType reductType,
432  const Packet &send, const Ptr<Packet> &scanReduct
433  );
434 
440 template<typename Ordinal, typename Packet>
441 void scan(
442  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
443  const ReferenceTypeReductionOp<Ordinal,Packet> &reductOp,
444  const Ordinal count, const Packet*const sendBuffer[], Packet*const scanReducts[]
445  );
446 
452 template<typename Ordinal, typename Packet, typename Serializer>
453 void scan(
454  const Comm<Ordinal>& comm,
455  const Serializer& serializer,
456  const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
457  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
458  );
459 
465 template<typename Ordinal, typename Packet, typename Serializer>
466 void scan(
467  const Comm<Ordinal>& comm,
468  const Serializer& serializer,
469  const EReductionType reductType,
470  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
471  );
472 
477 template<typename Ordinal, typename Packet>
478 void send(
479  const Comm<Ordinal>& comm,
480  const Ordinal count, const Packet sendBuffer[], const int destRank
481  );
482 
484 template<typename Ordinal, typename Packet>
485 void
486 send (const Packet sendBuffer[],
487  const Ordinal count,
488  const int destRank,
489  const int tag,
490  const Comm<Ordinal>& comm);
491 
496 template<typename Ordinal, typename Packet>
497 void ssend(
498  const Comm<Ordinal>& comm,
499  const Ordinal count, const Packet sendBuffer[], const int destRank
500  );
501 
503 template<typename Ordinal, typename Packet>
504 void
505 ssend (const Packet sendBuffer[],
506  const Ordinal count,
507  const int destRank,
508  const int tag,
509  const Comm<Ordinal>& comm);
510 
515 template<typename Ordinal, typename Packet>
516 void send(
517  const Comm<Ordinal>& comm,
518  const Packet &send, const int destRank
519  );
520 
525 template<typename Ordinal, typename Packet>
526 void ssend(
527  const Comm<Ordinal>& comm,
528  const Packet &send, const int destRank
529  );
530 
537 template<typename Ordinal, typename Packet>
538 void send(
539  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
540  const Ordinal count, const Packet*const sendBuffer[], const int destRank
541  );
542 
548 template<typename Ordinal, typename Packet, typename Serializer>
549 void send(
550  const Comm<Ordinal>& comm,
551  const Serializer& serializer,
552  const Ordinal count, const Packet sendBuffer[], const int destRank
553  );
554 
559 template<typename Ordinal, typename Packet>
560 int receive(
561  const Comm<Ordinal>& comm,
562  const int sourceRank, const Ordinal count, Packet recvBuffer[]
563  );
564 
569 template<typename Ordinal, typename Packet>
570 int receive(
571  const Comm<Ordinal>& comm,
572  const int sourceRank, Packet *recv
573  );
574 
579 template<typename Ordinal, typename Packet>
580 int receive(
581  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
582  const int sourceRank, const Ordinal count, Packet*const recvBuffer[]
583  );
584 
590 template<typename Ordinal, typename Packet, typename Serializer>
591 int receive(
592  const Comm<Ordinal>& comm,
593  const Serializer& serializer,
594  const int sourceRank, const Ordinal count, Packet recvBuffer[]
595  );
596 
602 template<typename Ordinal, typename Packet>
603 void readySend(
604  const Comm<Ordinal>& comm,
605  const ArrayView<const Packet> &sendBuffer,
606  const int destRank
607  );
608 
610 template<typename Ordinal, typename Packet>
611 void
612 readySend (const Packet sendBuffer[],
613  const Ordinal count,
614  const int destRank,
615  const int tag,
616  const Comm<Ordinal>& comm);
617 
622 template<typename Ordinal, typename Packet>
623 void readySend(
624  const Comm<Ordinal>& comm,
625  const Packet &send,
626  const int destRank
627  );
628 
634 template<typename Ordinal, typename Packet, typename Serializer>
635 void readySend(
636  const Comm<Ordinal>& comm,
637  const Serializer& serializer,
638  const ArrayView<const Packet> &sendBuffer,
639  const int destRank
640  );
641 
646 template<typename Ordinal, typename Packet>
647 RCP<CommRequest<Ordinal> > isend(
648  const Comm<Ordinal>& comm,
649  const ArrayRCP<const Packet> &sendBuffer,
650  const int destRank
651  );
652 
654 template<typename Ordinal, typename Packet>
655 RCP<CommRequest<Ordinal> >
656 isend (const ArrayRCP<const Packet>& sendBuffer,
657  const int destRank,
658  const int tag,
659  const Comm<Ordinal>& comm);
660 
665 template<typename Ordinal, typename Packet>
666 RCP<CommRequest<Ordinal> > isend(
667  const Comm<Ordinal>& comm,
668  const RCP<const Packet> &send,
669  const int destRank
670  );
671 
677 template<typename Ordinal, typename Packet, typename Serializer>
678 RCP<CommRequest<Ordinal> > isend(
679  const Comm<Ordinal>& comm,
680  const Serializer& serializer,
681  const ArrayRCP<const Packet> &sendBuffer,
682  const int destRank
683  );
684 
685 
686 // 2008/07/29: rabartl: ToDo: Add reference semantics version of isend!
687 
688 
698 template<typename Ordinal, typename Packet>
699 RCP<CommRequest<Ordinal> > ireceive(
700  const Comm<Ordinal>& comm,
701  const ArrayRCP<Packet> &recvBuffer,
702  const int sourceRank
703  );
704 
706 template<typename Ordinal, typename Packet>
707 RCP<CommRequest<Ordinal> >
708 ireceive (const ArrayRCP<Packet> &recvBuffer,
709  const int sourceRank,
710  const int tag,
711  const Comm<Ordinal>& comm);
712 
724 template<typename Ordinal, typename Packet>
725 RCP<CommRequest<Ordinal> > ireceive(
726  const Comm<Ordinal>& comm,
727  const RCP<Packet> &recv,
728  const int sourceRank
729  );
730 
736 template<typename Ordinal, typename Packet, typename Serializer>
737 RCP<CommRequest<Ordinal> > ireceive(
738  const Comm<Ordinal>& comm,
739  const Serializer& serializer,
740  const ArrayRCP<Packet> &recvBuffer,
741  const int sourceRank
742  );
743 
744 
745 // 2008/07/29: rabartl: ToDo: Add reference semantics version of ireceive!
746 
747 
755 template<typename Ordinal>
756 void waitAll(
757  const Comm<Ordinal>& comm,
758  const ArrayView<RCP<CommRequest<Ordinal> > > &requests
759  );
760 
790 template<typename Ordinal>
791 void
792 waitAll (const Comm<Ordinal>& comm,
793  const ArrayView<RCP<CommRequest<Ordinal> > >& requests,
794  const ArrayView<RCP<CommStatus<Ordinal> > >& statuses);
795 
819 template<typename Ordinal>
820 RCP<CommStatus<Ordinal> >
821 wait (const Comm<Ordinal>& comm, const Ptr<RCP<CommRequest<Ordinal> > >& request);
822 
823 //
824 // Standard reduction subclasses for objects that use value semantics
825 //
826 
827 
832 template<typename Ordinal, typename Packet>
833 class SumValueReductionOp : public ValueTypeReductionOp<Ordinal,Packet>
834 {
835 public:
837  void reduce(
838  const Ordinal count,
839  const Packet inBuffer[],
840  Packet inoutBuffer[]
841  ) const;
842 };
843 
844 
853 template<typename Ordinal, typename Packet>
854 class MinValueReductionOp : public ValueTypeReductionOp<Ordinal,Packet>
855 {
856 public:
858  void reduce(
859  const Ordinal count,
860  const Packet inBuffer[],
861  Packet inoutBuffer[]
862  ) const;
863 };
864 
865 
874 template<typename Ordinal, typename Packet>
875 class MaxValueReductionOp : public ValueTypeReductionOp<Ordinal,Packet>
876 {
877 public:
879  void reduce(
880  const Ordinal count,
881  const Packet inBuffer[],
882  Packet inoutBuffer[]
883  ) const;
884 };
885 
886 
891 template<typename Ordinal, typename Packet>
892 class ANDValueReductionOp : public ValueTypeReductionOp<Ordinal,Packet>
893 {
894 public:
896  void reduce(
897  const Ordinal count,
898  const Packet inBuffer[],
899  Packet inoutBuffer[]
900  ) const;
901 };
902 
903 
904 // ////////////////////////////////////////////////////////////
905 // Implementation details (not for geneal users to mess with)
906 
907 
908 //
909 // ReductionOp Utilities
910 //
911 
912 
913 namespace MixMaxUtilities {
914 
915 
916 template<bool isComparable, typename Ordinal, typename Packet>
917 class Min {};
918 
919 
920 template<typename Ordinal, typename Packet>
921 class Min<true,Ordinal,Packet> {
922 public:
923  static void min(
924  const Ordinal count,
925  const Packet inBuffer[],
926  Packet inoutBuffer[]
927  )
928  {
929  for( int i = 0; i < count; ++i )
930  inoutBuffer[i] = TEUCHOS_MIN(inoutBuffer[i],inBuffer[i]);
931  }
932 };
933 
934 
935 template<typename Ordinal, typename Packet>
936 class Min<false,Ordinal,Packet> {
937 public:
938  static void min(
939  const Ordinal,
940  const Packet[],
941  Packet[]
942  )
943  {
945  true,std::logic_error,
946  "Error, the type "<<TypeNameTraits<Packet>::name()
947  <<" does not support comparison operations!"
948  );
949  }
950 };
951 
952 
953 template<bool isComparable, typename Ordinal, typename Packet>
954 class Max {};
955 
956 
957 template<typename Ordinal, typename Packet>
958 class Max<true,Ordinal,Packet> {
959 public:
960  static void max(
961  const Ordinal count,
962  const Packet inBuffer[],
963  Packet inoutBuffer[]
964  )
965  {
966  for( int i = 0; i < count; ++i )
967  inoutBuffer[i] = TEUCHOS_MAX(inoutBuffer[i],inBuffer[i]);
968  }
969 };
970 
971 
972 template<typename Ordinal, typename Packet>
973 class Max<false,Ordinal,Packet> {
974 public:
975  static void max(
976  const Ordinal,
977  const Packet[],
978  Packet[]
979  )
980  {
982  true,std::logic_error,
983  "Error, the type "<<TypeNameTraits<Packet>::name()
984  <<" does not support comparison operations!"
985  );
986  }
987 };
988 
989 
990 template<bool isComparable, typename Ordinal, typename Packet>
991 class AND {};
992 
993 
994 template<typename Ordinal, typename Packet>
995 class AND<true,Ordinal,Packet> {
996 public:
997  static void andOp(
998  const Ordinal count,
999  const Packet inBuffer[],
1000  Packet inoutBuffer[]
1001  )
1002  {
1003  for( int i = 0; i < count; ++i )
1004  inoutBuffer[i] = inoutBuffer[i] && inBuffer[i];
1005  }
1006 };
1007 
1008 
1009 template<typename Ordinal, typename Packet>
1010 class AND<false,Ordinal,Packet> {
1011 public:
1012  static void andOp(
1013  const Ordinal,
1014  const Packet[],
1015  Packet[]
1016  )
1017  {
1019  true,std::logic_error,
1020  "Error, the type "<<TypeNameTraits<Packet>::name()
1021  <<" does not support logical AND operations!"
1022  );
1023  }
1024 };
1025 
1026 
1027 } // namespace MixMaxUtilities
1028 
1029 
1030 template<typename Ordinal, typename Packet>
1032  const Ordinal count,
1033  const Packet inBuffer[],
1034  Packet inoutBuffer[]
1035  ) const
1036 {
1037  for( int i = 0; i < count; ++i )
1038  inoutBuffer[i] += inBuffer[i];
1039 }
1040 
1041 
1042 template<typename Ordinal, typename Packet>
1044  const Ordinal count,
1045  const Packet inBuffer[],
1046  Packet inoutBuffer[]
1047  ) const
1048 {
1049  typedef MixMaxUtilities::Min<ScalarTraits<Packet>::isComparable, Ordinal, Packet> min_type;
1050  min_type::min (count, inBuffer, inoutBuffer);
1051 }
1052 
1053 
1054 template<typename Ordinal, typename Packet>
1056  const Ordinal count,
1057  const Packet inBuffer[],
1058  Packet inoutBuffer[]
1059  ) const
1060 {
1061  typedef MixMaxUtilities::Max<ScalarTraits<Packet>::isComparable, Ordinal, Packet> max_type;
1062  max_type::max (count,inBuffer,inoutBuffer);
1063 }
1064 
1065 
1066 template<typename Ordinal, typename Packet>
1068  const Ordinal count,
1069  const Packet inBuffer[],
1070  Packet inoutBuffer[]
1071  ) const
1072 {
1073  typedef MixMaxUtilities::AND<ScalarTraits<Packet>::isComparable, Ordinal, Packet> and_type;
1074  and_type::andOp (count, inBuffer, inoutBuffer);
1075 }
1076 
1077 
1078 } // namespace Teuchos
1079 
1080 
1081 // //////////////////////////
1082 // Template implemenations
1083 
1084 
1085 //
1086 // ReductionOp utilities
1087 //
1088 
1089 
1090 namespace Teuchos {
1091 
1092 
1093 // Not for the general user to use! I am returning a raw ReductionOp* pointer
1094 // to avoid the overhead of using RCP. However, given the use case
1095 // this is just fine since I can just use std::auto_ptr to make sure things
1096 // are deleted correctly.
1097 //
1098 // NOTE (mfh 08 Feb 2015) std::auto_ptr has been deprecated in C++11.
1099 // I could either replace it with std::unique_ptr, or just call 'new'
1100 // and 'delete' manually. The former is less error prone, but
1101 // requires checking a macro for whether C++11 is actually enabled.
1102 // Thus, I've chosen (for now) to rewrite all the code that uses
1103 // std::auto_ptr, so that it allocates and deletes manually.
1104 template<typename Ordinal, typename Packet>
1105 ValueTypeReductionOp<Ordinal,Packet>*
1106 createOp (const EReductionType reductType)
1107 {
1108  typedef ScalarTraits<Packet> ST;
1109  switch (reductType) {
1110  case REDUCE_SUM: {
1112  }
1113  case REDUCE_MIN: {
1114  if (ST::isComparable) {
1116  }
1117  else {
1119  (! ST::isComparable, std::invalid_argument, "Teuchos::createOp"
1120  "(EReductionType): The Packet type " << TypeNameTraits<Packet>::name ()
1121  << " is not less-than comparable, so it does not make sense to do a "
1122  "MIN reduction with it.");
1123  }
1124  }
1125  case REDUCE_MAX: {
1126  if (ST::isComparable) {
1128  }
1129  else {
1131  (! ST::isComparable, std::invalid_argument, "Teuchos::createOp"
1132  "(EReductionType): The Packet type " << TypeNameTraits<Packet>::name ()
1133  << " is not less-than comparable, so it does not make sense to do a "
1134  "MAX reduction with it.");
1135  }
1136  }
1137  case REDUCE_AND: {
1139  }
1140  default:
1142  true, std::invalid_argument, "Teuchos::createOp(EReductionType): "
1143  "Invalid EReductionType value " << reductType << ". Valid values "
1144  "include REDUCE_SUM, REDUCE_MIN, REDUCE_MAX, and REDUCE_AND.");
1145  }
1146 }
1147 
1148 
1149 } // namespace Teuchos
1150 
1151 
1152 //
1153 // Teuchos::Comm wrapper functions
1154 //
1155 
1156 
1157 template<typename Ordinal>
1158 int Teuchos::rank(const Comm<Ordinal>& comm)
1159 {
1160  return comm.getRank();
1161 }
1162 
1163 
1164 template<typename Ordinal>
1165 int Teuchos::size(const Comm<Ordinal>& comm)
1166 {
1167  return comm.getSize();
1168 }
1169 
1170 
1171 template<typename Ordinal>
1172 void Teuchos::barrier(const Comm<Ordinal>& comm)
1173 {
1175  "Teuchos::CommHelpers: barrier<"
1176  <<OrdinalTraits<Ordinal>::name()
1177  <<">()"
1178  );
1179  comm.barrier();
1180 }
1181 
1182 
1183 template<typename Ordinal, typename Packet>
1184 void Teuchos::broadcast(
1185  const Comm<Ordinal>& comm,
1186  const int rootRank, const Ordinal count, Packet buffer[]
1187  )
1188 {
1190  "Teuchos::CommHelpers: broadcast<"
1191  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1192  <<">( value type )"
1193  );
1194  ValueTypeSerializationBuffer<Ordinal,Packet>
1195  charBuffer(count,buffer);
1196  comm.broadcast(
1197  rootRank,charBuffer.getBytes(),charBuffer.getCharBuffer()
1198  );
1199 }
1200 
1201 
1202 template<typename Ordinal, typename Packet>
1203 void Teuchos::broadcast(
1204  const Comm<Ordinal>& comm,
1205  const int rootRank,
1206  const ArrayView<Packet> &buffer
1207  )
1208 {
1209  broadcast<Ordinal, Packet>(comm, rootRank, buffer.size(), buffer.getRawPtr() );
1210 }
1211 
1212 
1213 template<typename Ordinal, typename Packet>
1214 void Teuchos::broadcast(
1215  const Comm<Ordinal>& comm,
1216  const int rootRank, Packet *object
1217  )
1218 {
1219  broadcast<Ordinal,Packet>(comm,rootRank,1,object);
1220 }
1221 
1222 
1223 template<typename Ordinal, typename Packet>
1224 void Teuchos::broadcast(
1225  const Comm<Ordinal>& comm,
1226  const int rootRank, const Ptr<Packet> &object
1227  )
1228 {
1229  broadcast<Ordinal,Packet>(comm,rootRank,1,object.getRawPtr());
1230 }
1231 
1232 
1233 template<typename Ordinal, typename Packet>
1234 void Teuchos::broadcast(
1235  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
1236  const int rootRank, const Ordinal count, Packet*const buffer[]
1237  )
1238 {
1240  "Teuchos::CommHelpers: broadcast<"
1241  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1242  <<">( reference type )"
1243  );
1244  ReferenceTypeSerializationBuffer<Ordinal,Packet>
1245  charBuffer(serializer, count, buffer);
1246  comm.broadcast(
1247  rootRank,charBuffer.getBytes(),charBuffer.getCharBuffer()
1248  );
1249 }
1250 
1251 
1252 template<typename Ordinal, typename Packet>
1253 void Teuchos::broadcast(
1254  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
1255  const int rootRank, const ArrayView<const Ptr<Packet> > &buffer
1256  )
1257 {
1258  Array<Packet*> bufferPtrArray;
1259  for (int i = 0; i < buffer.size(); ++i) {
1260  bufferPtrArray.push_back(buffer[i].getRawPtr());
1261  }
1262  broadcast<Ordinal,Packet>(comm, serializer, rootRank,
1263  buffer.size(), bufferPtrArray.getRawPtr());
1264 }
1265 
1266 template<typename Ordinal, typename Packet, typename Serializer>
1267 void Teuchos::broadcast(
1268  const Comm<Ordinal>& comm,
1269  const Serializer& serializer,
1270  const int rootRank, const Ordinal count, Packet buffer[]
1271  )
1272 {
1274  "Teuchos::CommHelpers: broadcast<"
1275  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1276  <<">( value type )"
1277  );
1278  ValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
1279  charBuffer(count,buffer,rcp(&serializer,false));
1280  comm.broadcast(
1281  rootRank,charBuffer.getBytes(),charBuffer.getCharBuffer()
1282  );
1283 }
1284 
1285 
1286 template<typename Ordinal, typename Packet>
1287 void Teuchos::gatherAll(
1288  const Comm<Ordinal>& comm,
1289  const Ordinal sendCount, const Packet sendBuffer[],
1290  const Ordinal recvCount, Packet recvBuffer[]
1291  )
1292 {
1294  "Teuchos::CommHelpers: gatherAll<"
1295  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1296  <<">( value type )"
1297  );
1298  ConstValueTypeSerializationBuffer<Ordinal,Packet>
1299  charSendBuffer(sendCount,sendBuffer);
1300  ValueTypeSerializationBuffer<Ordinal,Packet>
1301  charRecvBuffer(recvCount,recvBuffer);
1302  comm.gatherAll(
1303  charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
1304  ,charRecvBuffer.getBytes(),charRecvBuffer.getCharBuffer()
1305  );
1306 }
1307 
1308 template<typename Ordinal, typename Packet>
1309 void
1310 Teuchos::gather (const Packet sendBuf[],
1311  const Ordinal sendCount,
1312  Packet recvBuf[],
1313  const Ordinal recvCount,
1314  const int root,
1315  const Comm<Ordinal>& comm)
1316 {
1318  "Teuchos::CommHelpers: gather<"
1319  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1320  <<">( value type )"
1321  );
1322  ConstValueTypeSerializationBuffer<Ordinal,Packet>
1323  charSendBuffer (sendCount, sendBuf);
1324  ValueTypeSerializationBuffer<Ordinal,Packet>
1325  charRecvBuffer (recvCount, recvBuf);
1326  comm.gather (charSendBuffer.getBytes (),
1327  charSendBuffer.getCharBuffer (),
1328  charRecvBuffer.getBytes (),
1329  charRecvBuffer.getCharBuffer (),
1330  root);
1331 }
1332 
1333 template<typename Ordinal, typename Packet>
1334 void
1335 Teuchos::gatherv (const Packet sendBuf[],
1336  const Ordinal sendCount,
1337  Packet recvBuf[],
1338  const Ordinal recvCounts[],
1339  const Ordinal displs[],
1340  const int root,
1341  const Comm<Ordinal>& comm)
1342 {
1343  // Ordinal totalRecvCount = 0;
1344 
1345  // // In order to get the right output buffer length, we have to sum
1346  // // the receive counts from all the processes in the communicator.
1347  // const Ordinal numProcs = as<Ordinal> (comm->getSize ());
1348  // for (Ordinal k = 0; k < as<Ordinal> (numProcs); ++k) {
1349  // totalRecvCount += recvCounts[k];
1350  // }
1351 
1352  // // FIXME (mfh 16 Apr 2013) We also have to redo the displacements.
1353 
1354  // ConstValueTypeSerializationBuffer<Ordinal,Packet>
1355  // charSendBuffer (sendCount, sendBuf);
1356  // ValueTypeSerializationBuffer<Ordinal,Packet>
1357  // charRecvBuffer (totalRecvCount, recvBuf);
1358  // comm.gatherv (charSendBuffer.getBytes (),
1359  // charSendBuffer.getCharBuffer (),
1360  // charRecvBuffer.getBytes (),
1361  // charRecvBuffer.getCharBuffer (),
1362  // root);
1363  TEUCHOS_TEST_FOR_EXCEPTION(true, std::logic_error,
1364  "Teuchos::gatherv: The general case is not implemented.");
1365 }
1366 
1367 template<typename Ordinal, typename Packet>
1368 void Teuchos::gatherAll(
1369  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
1370  const Ordinal sendCount, const Packet*const sendBuffer[],
1371  const Ordinal recvCount, Packet*const recvBuffer[]
1372  )
1373 {
1374  TEUCHOS_TEST_FOR_EXCEPT(true); // ToDo: Implement and test when needed!
1375 }
1376 
1377 template<typename Ordinal, typename Packet, typename Serializer>
1378 void Teuchos::gatherAll(
1379  const Comm<Ordinal>& comm,
1380  const Serializer& serializer,
1381  const Ordinal sendCount, const Packet sendBuffer[],
1382  const Ordinal recvCount, Packet recvBuffer[]
1383  )
1384 {
1386  "Teuchos::CommHelpers: gatherAll<"
1387  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1388  <<">( value type )"
1389  );
1390  ConstValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
1391  charSendBuffer(sendCount,sendBuffer,rcp(&serializer,false));
1392  ValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
1393  charRecvBuffer(recvCount,recvBuffer,rcp(&serializer,false));
1394  comm.gatherAll(
1395  charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
1396  ,charRecvBuffer.getBytes(),charRecvBuffer.getCharBuffer()
1397  );
1398 }
1399 
1400 
1401 template<typename Ordinal, typename Packet>
1402 void
1403 Teuchos::reduce (const Packet sendBuf[],
1404  Packet recvBuf[],
1405  const Ordinal count,
1406  const EReductionType reductType,
1407  const Ordinal root,
1408  const Comm<Ordinal>& comm)
1409 {
1410  // See Bug 6375; Tpetra does not actually need any specializations
1411  // other than Ordinal = int and Packet = int. We may add them later
1412  // if there is interest.
1414  (true, std::logic_error, "Teuchos::reduce<" <<
1415  TypeNameTraits<Ordinal>::name () << "," << TypeNameTraits<Packet>::name ()
1416  << ">: Generic version not implemented. We only implement this function "
1417  "for Ordinal = int and Packet = specific types.");
1418 }
1419 
1420 
1421 template<typename Ordinal, typename Packet>
1422 void Teuchos::reduceAll(
1423  const Comm<Ordinal>& comm, const ValueTypeReductionOp<Ordinal,Packet> &reductOp
1424  ,const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
1425  )
1426 {
1428  "Teuchos::CommHelpers: reduceAll<"
1429  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1430  <<">( value type, user-defined op )"
1431  );
1432  ConstValueTypeSerializationBuffer<Ordinal,Packet>
1433  charSendBuffer(count,sendBuffer);
1434  ValueTypeSerializationBuffer<Ordinal,Packet>
1435  charGlobalReducts(count,globalReducts);
1436  CharToValueTypeReductionOp<Ordinal,Packet>
1437  charReductOp(rcp(&reductOp,false));
1438  comm.reduceAll(
1439  charReductOp,charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
1440  ,charGlobalReducts.getCharBuffer()
1441  );
1442 }
1443 
1444 
1445 template<typename Ordinal, typename Packet>
1446 void Teuchos::reduceAll(
1447  const Comm<Ordinal>& comm, const EReductionType reductType,
1448  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
1449  )
1450 {
1452  "Teuchos::CommHelpers: reduceAll<"
1453  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
1454  <<">( value type, "<<toString(reductType)<<" )"
1455  );
1456 
1457  ValueTypeReductionOp<Ordinal,Packet>* reductOp =
1458  createOp<Ordinal, Packet> (reductType);
1459  try {
1460  reduceAll(comm,*reductOp,count,sendBuffer,globalReducts);
1461  }
1462  catch (std::exception& e) {
1463  delete reductOp;
1464  throw e;
1465  }
1466  delete reductOp;
1467 }
1468 
1469 
1470 namespace Teuchos {
1471 
1472 // amb 11 Nov 2014. I am disabling these specializations for
1473 // now. MPI_C_DOUBLE_COMPLEX is causing a problem in some builds. This code was
1474 // effectively turned on only yesterday (10 Nov 2014) when TEUCHOS_HAVE_COMPLEX
1475 // was corrected to be HAVE_TEUCHOS_COMPLEX, so evidently there are no users of
1476 // these specializations.
1477 #if 0
1478 #ifdef HAVE_TEUCHOS_COMPLEX
1479 // Specialization for Ordinal=int and Packet=std::complex<double>.
1480 template<>
1482 reduceAll<int, std::complex<double> > (const Comm<int>& comm,
1483  const EReductionType reductType,
1484  const int count,
1485  const std::complex<double> sendBuffer[],
1486  std::complex<double> globalReducts[]);
1487 template<>
1488 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1489 ireceive<int, std::complex<double> > (const Comm<int>& comm,
1490  const ArrayRCP<std::complex<double> >& recvBuffer,
1491  const int sourceRank);
1492 template<>
1493 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1494 ireceive<int, std::complex<double> > (const ArrayRCP<std::complex<double> > &recvBuffer,
1495  const int sourceRank,
1496  const int tag,
1497  const Comm<int>& comm);
1498 template<>
1500 send<int, std::complex<double> > (const Comm<int>& comm,
1501  const int count,
1502  const std::complex<double> sendBuffer[],
1503  const int destRank);
1504 template<>
1506 send<int, std::complex<double> > (const std::complex<double> sendBuffer[],
1507  const int count,
1508  const int destRank,
1509  const int tag,
1510  const Comm<int>& comm);
1511 template<>
1512 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1513 isend<int, std::complex<double> > (const ArrayRCP<const std::complex<double> >& sendBuffer,
1514  const int destRank,
1515  const int tag,
1516  const Comm<int>& comm);
1517 
1518 // Specialization for Ordinal=int and Packet=std::complex<float>.
1519 template<>
1521 reduceAll<int, std::complex<float> > (const Comm<int>& comm,
1522  const EReductionType reductType,
1523  const int count,
1524  const std::complex<float> sendBuffer[],
1525  std::complex<float> globalReducts[]);
1526 template<>
1527 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1528 ireceive<int, std::complex<float> > (const Comm<int>& comm,
1529  const ArrayRCP<std::complex<float> >& recvBuffer,
1530  const int sourceRank);
1531 template<>
1532 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1533 ireceive<int, std::complex<float> > (const ArrayRCP<std::complex<float> > &recvBuffer,
1534  const int sourceRank,
1535  const int tag,
1536  const Comm<int>& comm);
1537 template<>
1539 send<int, std::complex<float> > (const Comm<int>& comm,
1540  const int count,
1541  const std::complex<float> sendBuffer[],
1542  const int destRank);
1543 template<>
1545 send<int, std::complex<float> > (const std::complex<float> sendBuffer[],
1546  const int count,
1547  const int destRank,
1548  const int tag,
1549  const Comm<int>& comm);
1550 template<>
1551 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1552 isend<int, std::complex<float> > (const ArrayRCP<const std::complex<float> >& sendBuffer,
1553  const int destRank,
1554  const int tag,
1555  const Comm<int>& comm);
1556 #endif // HAVE_TEUCHOS_COMPLEX
1557 #endif // if 0
1558 
1559 // Specialization for Ordinal=int and Packet=double.
1560 template<>
1562 reduceAll<int, double> (const Comm<int>& comm,
1563  const EReductionType reductType,
1564  const int count,
1565  const double sendBuffer[],
1566  double globalReducts[]);
1567 template<>
1568 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1569 ireceive<int, double> (const Comm<int>& comm,
1570  const ArrayRCP<double>& recvBuffer,
1571  const int sourceRank);
1572 template<>
1573 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1574 ireceive<int, double> (const ArrayRCP<double> &recvBuffer,
1575  const int sourceRank,
1576  const int tag,
1577  const Comm<int>& comm);
1578 template<>
1580 send<int, double> (const Comm<int>& comm,
1581  const int count,
1582  const double sendBuffer[],
1583  const int destRank);
1584 template<>
1586 send<int, double> (const double sendBuffer[],
1587  const int count,
1588  const int destRank,
1589  const int tag,
1590  const Comm<int>& comm);
1591 template<>
1592 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1593 isend<int, double> (const ArrayRCP<const double>& sendBuffer,
1594  const int destRank,
1595  const int tag,
1596  const Comm<int>& comm);
1597 
1598 template<>
1600 gatherv<int, double> (const double sendBuf[],
1601  const int sendCount,
1602  double recvBuf[],
1603  const int recvCounts[],
1604  const int displs[],
1605  const int root,
1606  const Comm<int>& comm);
1607 
1608 // Specialization for Ordinal=int and Packet=float.
1609 template<>
1611 reduceAll<int, float> (const Comm<int>& comm,
1612  const EReductionType reductType,
1613  const int count,
1614  const float sendBuffer[],
1615  float globalReducts[]);
1616 template<>
1617 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1618 ireceive<int, float> (const Comm<int>& comm,
1619  const ArrayRCP<float>& recvBuffer,
1620  const int sourceRank);
1621 template<>
1622 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1623 ireceive<int, float> (const ArrayRCP<float> &recvBuffer,
1624  const int sourceRank,
1625  const int tag,
1626  const Comm<int>& comm);
1627 template<>
1629 send<int, float> (const Comm<int>& comm,
1630  const int count,
1631  const float sendBuffer[],
1632  const int destRank);
1633 template<>
1635 send<int, float> (const float sendBuffer[],
1636  const int count,
1637  const int destRank,
1638  const int tag,
1639  const Comm<int>& comm);
1640 template<>
1641 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1642 isend<int, float> (const ArrayRCP<const float>& sendBuffer,
1643  const int destRank,
1644  const int tag,
1645  const Comm<int>& comm);
1646 
1647 template<>
1649 gatherv<int, float> (const float sendBuf[],
1650  const int sendCount,
1651  float recvBuf[],
1652  const int recvCounts[],
1653  const int displs[],
1654  const int root,
1655  const Comm<int>& comm);
1656 
1657 // Specialization for Ordinal=int and Packet=long long.
1658 template<>
1660 gather<int, long long> (const long long sendBuf[],
1661  const int sendCount,
1662  long long recvBuf[],
1663  const int recvCount,
1664  const int root,
1665  const Comm<int>& comm);
1666 template<>
1668 gatherv<int, long long> (const long long sendBuf[],
1669  const int sendCount,
1670  long long recvBuf[],
1671  const int recvCounts[],
1672  const int displs[],
1673  const int root,
1674  const Comm<int>& comm);
1675 template<>
1677 reduceAll<int, long long> (const Comm<int>& comm,
1678  const EReductionType reductType,
1679  const int count,
1680  const long long sendBuffer[],
1681  long long globalReducts[]);
1682 template<>
1683 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1684 ireceive<int, long long> (const Comm<int>& comm,
1685  const ArrayRCP<long long>& recvBuffer,
1686  const int sourceRank);
1687 template<>
1688 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1689 ireceive<int, long long> (const ArrayRCP<long long> &recvBuffer,
1690  const int sourceRank,
1691  const int tag,
1692  const Comm<int>& comm);
1693 template<>
1695 send<int, long long> (const Comm<int>& comm,
1696  const int count,
1697  const long long sendBuffer[],
1698  const int destRank);
1699 template<>
1701 send<int, long long> (const long long sendBuffer[],
1702  const int count,
1703  const int destRank,
1704  const int tag,
1705  const Comm<int>& comm);
1706 template<>
1707 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1708 isend<int, long long> (const ArrayRCP<const long long>& sendBuffer,
1709  const int destRank,
1710  const int tag,
1711  const Comm<int>& comm);
1712 
1713 // Specialization for Ordinal=int and Packet=unsigned long long.
1714 template<>
1716 gather<int, unsigned long long> (const unsigned long long sendBuf[],
1717  const int sendCount,
1718  unsigned long long recvBuf[],
1719  const int recvCount,
1720  const int root,
1721  const Comm<int>& comm);
1722 template<>
1724 gatherv<int, unsigned long long> (const unsigned long long sendBuf[],
1725  const int sendCount,
1726  unsigned long long recvBuf[],
1727  const int recvCounts[],
1728  const int displs[],
1729  const int root,
1730  const Comm<int>& comm);
1731 template<>
1733 reduceAll<int, unsigned long long> (const Comm<int>& comm,
1734  const EReductionType reductType,
1735  const int count,
1736  const unsigned long long sendBuffer[],
1737  unsigned long long globalReducts[]);
1738 template<>
1739 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1740 ireceive<int, unsigned long long> (const Comm<int>& comm,
1741  const ArrayRCP<unsigned long long>& recvBuffer,
1742  const int sourceRank);
1743 template<>
1744 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1745 ireceive<int, unsigned long long> (const ArrayRCP<unsigned long long> &recvBuffer,
1746  const int sourceRank,
1747  const int tag,
1748  const Comm<int>& comm);
1749 template<>
1751 send<int, unsigned long long> (const Comm<int>& comm,
1752  const int count,
1753  const unsigned long long sendBuffer[],
1754  const int destRank);
1755 template<>
1757 send<int, unsigned long long> (const unsigned long long sendBuffer[],
1758  const int count,
1759  const int destRank,
1760  const int tag,
1761  const Comm<int>& comm);
1762 template<>
1763 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1764 isend<int, unsigned long long> (const ArrayRCP<const unsigned long long>& sendBuffer,
1765  const int destRank,
1766  const int tag,
1767  const Comm<int>& comm);
1768 
1769 // Specialization for Ordinal=int and Packet=long.
1770 template<>
1772 gather<int, long> (const long sendBuf[],
1773  const int sendCount,
1774  long recvBuf[],
1775  const int recvCount,
1776  const int root,
1777  const Comm<int>& comm);
1778 template<>
1780 gatherv<int, long> (const long sendBuf[],
1781  const int sendCount,
1782  long recvBuf[],
1783  const int recvCounts[],
1784  const int displs[],
1785  const int root,
1786  const Comm<int>& comm);
1787 template<>
1789 reduceAll<int, long> (const Comm<int>& comm,
1790  const EReductionType reductType,
1791  const int count,
1792  const long sendBuffer[],
1793  long globalReducts[]);
1794 template<>
1795 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1796 ireceive<int, long> (const Comm<int>& comm,
1797  const ArrayRCP<long>& recvBuffer,
1798  const int sourceRank);
1799 template<>
1800 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1801 ireceive<int, long> (const ArrayRCP<long> &recvBuffer,
1802  const int sourceRank,
1803  const int tag,
1804  const Comm<int>& comm);
1805 template<>
1807 send<int, long> (const Comm<int>& comm,
1808  const int count,
1809  const long sendBuffer[],
1810  const int destRank);
1811 template<>
1813 send<int, long> (const long sendBuffer[],
1814  const int count,
1815  const int destRank,
1816  const int tag,
1817  const Comm<int>& comm);
1818 template<>
1819 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1820 isend<int, long> (const ArrayRCP<const long>& sendBuffer,
1821  const int destRank,
1822  const int tag,
1823  const Comm<int>& comm);
1824 
1825 // Specialization for Ordinal=int and Packet=unsigned long.
1826 template<>
1828 gather<int, unsigned long> (const unsigned long sendBuf[],
1829  const int sendCount,
1830  unsigned long recvBuf[],
1831  const int recvCount,
1832  const int root,
1833  const Comm<int>& comm);
1834 template<>
1836 gatherv<int, unsigned long> (const unsigned long sendBuf[],
1837  const int sendCount,
1838  unsigned long recvBuf[],
1839  const int recvCounts[],
1840  const int displs[],
1841  const int root,
1842  const Comm<int>& comm);
1843 template<>
1845 reduceAll<int, unsigned long> (const Comm<int>& comm,
1846  const EReductionType reductType,
1847  const int count,
1848  const unsigned long sendBuffer[],
1849  unsigned long globalReducts[]);
1850 template<>
1851 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1852 ireceive<int, unsigned long> (const Comm<int>& comm,
1853  const ArrayRCP<unsigned long>& recvBuffer,
1854  const int sourceRank);
1855 template<>
1856 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1857 ireceive<int, unsigned long> (const ArrayRCP<unsigned long> &recvBuffer,
1858  const int sourceRank,
1859  const int tag,
1860  const Comm<int>& comm);
1861 template<>
1863 send<int, unsigned long> (const Comm<int>& comm,
1864  const int count,
1865  const unsigned long sendBuffer[],
1866  const int destRank);
1867 template<>
1869 send<int, unsigned long> (const unsigned long sendBuffer[],
1870  const int count,
1871  const int destRank,
1872  const int tag,
1873  const Comm<int>& comm);
1874 template<>
1875 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1876 isend<int, unsigned long> (const ArrayRCP<const unsigned long>& sendBuffer,
1877  const int destRank,
1878  const int tag,
1879  const Comm<int>& comm);
1880 
1881 // Specialization for Ordinal=int and Packet=int.
1882 template<>
1884 gather<int, int> (const int sendBuf[],
1885  const int sendCount,
1886  int recvBuf[],
1887  const int recvCount,
1888  const int root,
1889  const Comm<int>& comm);
1890 template<>
1892 gatherv<int, int> (const int sendBuf[],
1893  const int sendCount,
1894  int recvBuf[],
1895  const int recvCounts[],
1896  const int displs[],
1897  const int root,
1898  const Comm<int>& comm);
1899 template<>
1901 scatter (const int sendBuf[],
1902  const int sendCount,
1903  int recvBuf[],
1904  const int recvCount,
1905  const int root,
1906  const Comm<int>& comm);
1907 template<>
1909 scatterv (const double sendBuf[],
1910  const int sendCounts[],
1911  const int displs[],
1912  double recvBuf[],
1913  const int recvCount,
1914  const int root,
1915  const Comm<int>& comm);
1916 template<>
1918 scatterv (const float sendBuf[],
1919  const int sendCounts[],
1920  const int displs[],
1921  float recvBuf[],
1922  const int recvCount,
1923  const int root,
1924  const Comm<int>& comm);
1925 template<>
1927 reduce<int, int> (const int sendBuf[],
1928  int recvBuf[],
1929  const int count,
1930  const EReductionType reductType,
1931  const int root,
1932  const Comm<int>& comm);
1933 template<>
1935 reduce<int, long> (const long sendBuf[],
1936  long recvBuf[],
1937  const int count,
1938  const EReductionType reductType,
1939  const int root,
1940  const Comm<int>& comm);
1941 template<>
1943 reduce<int, unsigned long> (const unsigned long sendBuf[],
1944  unsigned long recvBuf[],
1945  const int count,
1946  const EReductionType reductType,
1947  const int root,
1948  const Comm<int>& comm);
1949 template<>
1951 reduce<int, unsigned long long > (const unsigned long long sendBuf[],
1952  unsigned long long recvBuf[],
1953  const int count,
1954  const EReductionType reductType,
1955  const int root,
1956  const Comm<int>& comm);
1957 template<>
1959 reduce<int, double> (const double sendBuf[],
1960  double recvBuf[],
1961  const int count,
1962  const EReductionType reductType,
1963  const int root,
1964  const Comm<int>& comm);
1965 template<>
1967 reduceAll<int, int> (const Comm<int>& comm,
1968  const EReductionType reductType,
1969  const int count,
1970  const int sendBuffer[],
1971  int globalReducts[]);
1972 
1973 template<>
1974 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1975 ireceive<int, int> (const Comm<int>& comm,
1976  const ArrayRCP<int>& recvBuffer,
1977  const int sourceRank);
1978 template<>
1979 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1980 ireceive<int, int> (const ArrayRCP<int> &recvBuffer,
1981  const int sourceRank,
1982  const int tag,
1983  const Comm<int>& comm);
1984 template<>
1986 send<int, int> (const Comm<int>& comm,
1987  const int count,
1988  const int sendBuffer[],
1989  const int destRank);
1990 template<>
1992 send<int, int> (const int sendBuffer[],
1993  const int count,
1994  const int destRank,
1995  const int tag,
1996  const Comm<int>& comm);
1997 template<>
1998 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
1999 isend<int, int> (const ArrayRCP<const int>& sendBuffer,
2000  const int destRank,
2001  const int tag,
2002  const Comm<int>& comm);
2003 
2004 // Specialization for Ordinal=int and Packet=unsigned int.
2005 template<>
2007 gather<int, unsigned int> (const unsigned int sendBuf[],
2008  const int sendCount,
2009  unsigned int recvBuf[],
2010  const int recvCount,
2011  const int root,
2012  const Comm<int>& comm);
2013 template<>
2015 gatherv<int, unsigned int> (const unsigned int sendBuf[],
2016  const int sendCount,
2017  unsigned int recvBuf[],
2018  const int recvCounts[],
2019  const int displs[],
2020  const int root,
2021  const Comm<int>& comm);
2022 template<>
2024 reduceAll<int, unsigned int> (const Comm<int>& comm,
2025  const EReductionType reductType,
2026  const int count,
2027  const unsigned int sendBuffer[],
2028  unsigned int globalReducts[]);
2029 template<>
2030 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
2031 ireceive<int, unsigned int> (const Comm<int>& comm,
2032  const ArrayRCP<unsigned int>& recvBuffer,
2033  const int sourceRank);
2034 template<>
2035 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
2036 ireceive<int, unsigned int> (const ArrayRCP<unsigned int> &recvBuffer,
2037  const int sourceRank,
2038  const int tag,
2039  const Comm<int>& comm);
2040 template<>
2042 send<int, unsigned int> (const Comm<int>& comm,
2043  const int count,
2044  const unsigned int sendBuffer[],
2045  const int destRank);
2046 template<>
2048 send<int, unsigned int> (const unsigned int sendBuffer[],
2049  const int count,
2050  const int destRank,
2051  const int tag,
2052  const Comm<int>& comm);
2053 template<>
2054 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
2055 isend<int, unsigned int> (const ArrayRCP<const unsigned int>& sendBuffer,
2056  const int destRank,
2057  const int tag,
2058  const Comm<int>& comm);
2059 
2060 // Specialization for Ordinal=int and Packet=short.
2061 template<>
2063 gather<int, short> (const short sendBuf[],
2064  const int sendCount,
2065  short recvBuf[],
2066  const int recvCount,
2067  const int root,
2068  const Comm<int>& comm);
2069 template<>
2071 gatherv<int, short> (const short sendBuf[],
2072  const int sendCount,
2073  short recvBuf[],
2074  const int recvCounts[],
2075  const int displs[],
2076  const int root,
2077  const Comm<int>& comm);
2078 template<>
2080 reduceAll<int, short> (const Comm<int>& comm,
2081  const EReductionType reductType,
2082  const int count,
2083  const short sendBuffer[],
2084  short globalReducts[]);
2085 template<>
2086 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
2087 ireceive<int, short> (const Comm<int>& comm,
2088  const ArrayRCP<short>& recvBuffer,
2089  const int sourceRank);
2090 template<>
2091 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
2092 ireceive<int, short> (const ArrayRCP<short> &recvBuffer,
2093  const int sourceRank,
2094  const int tag,
2095  const Comm<int>& comm);
2096 template<>
2098 send<int, short> (const Comm<int>& comm,
2099  const int count,
2100  const short sendBuffer[],
2101  const int destRank);
2102 template<>
2104 send<int, short> (const short sendBuffer[],
2105  const int count,
2106  const int destRank,
2107  const int tag,
2108  const Comm<int>& comm);
2109 template<>
2110 TEUCHOSCOMM_LIB_DLL_EXPORT RCP<CommRequest<int> >
2111 isend<int, short> (const ArrayRCP<const short>& sendBuffer,
2112  const int destRank,
2113  const int tag,
2114  const Comm<int>& comm);
2115 
2116 // mfh 18 Oct 2012: The specialization for Packet=char seems to be
2117 // causing problems such as the following:
2118 //
2119 // http://testing.sandia.gov/cdash/testDetails.php?test=9909246&build=747699
2120 //
2121 // I am disabling it for now. This should revert back to the old
2122 // behavior for Packet=char. That should fix the Tpetra errors, since
2123 // many Tpetra objects inherit from DistObject<char, ...>.
2124 #if 0
2125 // Specialization for Ordinal=int and Packet=char.
2126 template<>
2128 reduceAll<int, char> (const Comm<int>& comm,
2129  const EReductionType reductType,
2130  const int count,
2131  const char sendBuffer[],
2132  char globalReducts[]);
2133 #endif // 0
2134 } // namespace Teuchos
2135 
2136 
2137 template<typename Ordinal, typename Packet>
2138 void Teuchos::reduceAll(
2139  const Comm<Ordinal>& comm, const EReductionType reductType
2140  ,const Packet &send, const Ptr<Packet> &globalReduct
2141  )
2142 {
2143  // mfh 17 Oct 2012: This will invoke the above specializations for
2144  // general count, so we don't need to specialize this function.
2145  reduceAll<Ordinal,Packet>(comm, reductType, 1, &send, &*globalReduct);
2146 }
2147 
2148 
2149 template<typename Ordinal, typename Packet>
2150 void Teuchos::reduceAll(
2151  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
2152  const ReferenceTypeReductionOp<Ordinal,Packet> &reductOp,
2153  const Ordinal count, const Packet*const sendBuffer[], Packet*const globalReducts[]
2154  )
2155 {
2157  "Teuchos::CommHelpers: reduceAll<"
2158  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2159  <<">( reference type )"
2160  );
2161  ConstReferenceTypeSerializationBuffer<Ordinal,Packet>
2162  charSendBuffer(serializer,count,sendBuffer);
2163  ReferenceTypeSerializationBuffer<Ordinal,Packet>
2164  charGlobalReducts(serializer,count,globalReducts);
2165  CharToReferenceTypeReductionOp<Ordinal,Packet>
2166  charReductOp(rcp(&serializer,false),rcp(&reductOp,false));
2167  comm.reduceAll(
2168  charReductOp,charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2169  ,charGlobalReducts.getCharBuffer()
2170  );
2171 }
2172 
2173 template<typename Ordinal, typename Packet, typename Serializer>
2174 void Teuchos::reduceAll(
2175  const Comm<Ordinal>& comm,
2176  const Serializer& serializer,
2177  const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
2178  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
2179  )
2180 {
2182  "Teuchos::CommHelpers: reduceAll<"
2183  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2184  <<">( value type, user-defined op )"
2185  );
2186  ConstValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2187  charSendBuffer(count,sendBuffer,rcp(&serializer,false));
2188  ValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2189  charGlobalReducts(count,globalReducts,rcp(&serializer,false));
2190  CharToValueTypeReductionOp<Ordinal,Packet,Serializer>
2191  charReductOp(rcp(&reductOp,false),rcp(&serializer,false));
2192  comm.reduceAll(
2193  charReductOp,charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2194  ,charGlobalReducts.getCharBuffer()
2195  );
2196 }
2197 
2198 
2199 template<typename Ordinal, typename Packet, typename Serializer>
2200 void Teuchos::reduceAll(
2201  const Comm<Ordinal>& comm,
2202  const Serializer& serializer,
2203  const EReductionType reductType,
2204  const Ordinal count, const Packet sendBuffer[], Packet globalReducts[]
2205  )
2206 {
2208  "Teuchos::CommHelpers: reduceAll<"
2209  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2210  <<">( value type, "<<toString(reductType)<<" )"
2211  );
2212 
2213  ValueTypeReductionOp<Ordinal,Packet>* reductOp =
2214  createOp<Ordinal, Packet> (reductType);
2215  try {
2216  reduceAll(comm,serializer,*reductOp,count,sendBuffer,globalReducts);
2217  }
2218  catch (std::exception& e) {
2219  delete reductOp;
2220  throw e;
2221  }
2222  delete reductOp;
2223 }
2224 
2225 
2226 template<typename Ordinal, typename Packet>
2227 void Teuchos::scan(
2228  const Comm<Ordinal>& comm, const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
2229  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
2230  )
2231 {
2233  "Teuchos::CommHelpers: scan<"
2234  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2235  <<">( value type, user-defined op )"
2236  );
2237  ConstValueTypeSerializationBuffer<Ordinal,Packet>
2238  charSendBuffer(count,sendBuffer);
2239  ValueTypeSerializationBuffer<Ordinal,Packet>
2240  charScanReducts(count,scanReducts);
2241  CharToValueTypeReductionOp<Ordinal,Packet>
2242  charReductOp(rcp(&reductOp,false));
2243  comm.scan(
2244  charReductOp,charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2245  ,charScanReducts.getCharBuffer()
2246  );
2247 }
2248 
2249 
2250 template<typename Ordinal, typename Packet>
2251 void Teuchos::scan(
2252  const Comm<Ordinal>& comm, const EReductionType reductType,
2253  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
2254  )
2255 {
2257  "Teuchos::CommHelpers: scan<"
2258  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2259  <<">( value type, "<<toString(reductType)<<" )"
2260  );
2261 
2262  ValueTypeReductionOp<Ordinal,Packet>* reductOp =
2263  createOp<Ordinal, Packet> (reductType);
2264  try {
2265  scan(comm,*reductOp,count,sendBuffer,scanReducts);
2266  }
2267  catch (std::exception& e) {
2268  delete reductOp;
2269  throw e;
2270  }
2271  delete reductOp;
2272 }
2273 
2274 
2275 template<typename Ordinal, typename Packet>
2276 void Teuchos::scan(
2277  const Comm<Ordinal>& comm, const EReductionType reductType,
2278  const Packet &send, const Ptr<Packet> &scanReduct
2279  )
2280 {
2281  scan<Ordinal,Packet>(comm, reductType, 1, &send, &*scanReduct);
2282 }
2283 
2284 
2285 template<typename Ordinal, typename Packet>
2286 void Teuchos::scan(
2287  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
2288  const ReferenceTypeReductionOp<Ordinal,Packet> &reductOp,
2289  const Ordinal count, const Packet*const sendBuffer[], Packet*const scanReducts[]
2290  )
2291 {
2292  TEUCHOS_TEST_FOR_EXCEPT(true); // ToDo: Implement and test when needed!
2293 }
2294 
2295 template<typename Ordinal, typename Packet, typename Serializer>
2296 void Teuchos::scan(
2297  const Comm<Ordinal>& comm,
2298  const Serializer& serializer,
2299  const ValueTypeReductionOp<Ordinal,Packet> &reductOp,
2300  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
2301  )
2302 {
2304  "Teuchos::CommHelpers: scan<"
2305  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2306  <<">( value type, user-defined op )"
2307  );
2308  ConstValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2309  charSendBuffer(count,sendBuffer,rcp(&serializer,false));
2310  ValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2311  charScanReducts(count,scanReducts,rcp(&serializer,false));
2312  CharToValueTypeReductionOp<Ordinal,Packet,Serializer>
2313  charReductOp(rcp(&reductOp,false),rcp(&serializer,false));
2314  comm.scan(
2315  charReductOp,charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2316  ,charScanReducts.getCharBuffer()
2317  );
2318 }
2319 
2320 
2321 template<typename Ordinal, typename Packet, typename Serializer>
2322 void Teuchos::scan(
2323  const Comm<Ordinal>& comm,
2324  const Serializer& serializer,
2325  const EReductionType reductType,
2326  const Ordinal count, const Packet sendBuffer[], Packet scanReducts[]
2327  )
2328 {
2330  "Teuchos::CommHelpers: scan<"
2331  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2332  <<">( value type, "<<toString(reductType)<<" )"
2333  );
2334 
2335  ValueTypeReductionOp<Ordinal,Packet>* reductOp =
2336  createOp<Ordinal, Packet> (reductType);
2337  try {
2338  scan(comm,serializer,*reductOp,count,sendBuffer,scanReducts);
2339  }
2340  catch (std::exception& e) {
2341  delete reductOp;
2342  throw e;
2343  }
2344  delete reductOp;
2345 }
2346 
2347 template<typename Ordinal, typename Packet>
2348 void Teuchos::send(
2349  const Comm<Ordinal>& comm,
2350  const Ordinal count, const Packet sendBuffer[], const int destRank
2351  )
2352 {
2354  "Teuchos::CommHelpers: send<"
2355  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2356  <<">( value type )"
2357  );
2358  ConstValueTypeSerializationBuffer<Ordinal,Packet>
2359  charSendBuffer(count,sendBuffer);
2360  comm.send(
2361  charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2362  ,destRank
2363  );
2364 }
2365 
2366 template<typename Ordinal, typename Packet>
2367 void
2368 Teuchos::send (const Packet sendBuffer[],
2369  const Ordinal count,
2370  const int destRank,
2371  const int tag,
2372  const Comm<Ordinal>& comm)
2373 {
2375  "Teuchos::CommHelpers: send<"
2377  <<">( value type )"
2378  );
2379  ConstValueTypeSerializationBuffer<Ordinal,Packet> charSendBuffer (count, sendBuffer);
2380  comm.send (charSendBuffer.getBytes (), charSendBuffer.getCharBuffer (), destRank, tag);
2381 }
2382 
2383 template<typename Ordinal, typename Packet>
2384 void Teuchos::ssend(
2385  const Comm<Ordinal>& comm,
2386  const Ordinal count, const Packet sendBuffer[], const int destRank
2387  )
2388 {
2390  "Teuchos::CommHelpers: ssend<"
2391  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2392  <<">( value type )"
2393  );
2394  ConstValueTypeSerializationBuffer<Ordinal,Packet>
2395  charSendBuffer(count,sendBuffer);
2396  comm.ssend(
2397  charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2398  ,destRank
2399  );
2400 }
2401 
2402 template<typename Ordinal, typename Packet>
2403 void
2404 Teuchos::ssend (const Packet sendBuffer[],
2405  const Ordinal count,
2406  const int destRank,
2407  const int tag,
2408  const Comm<Ordinal>& comm)
2409 {
2411  "Teuchos::CommHelpers: ssend<"
2413  <<">( value type )"
2414  );
2416  buf_type charSendBuffer (count, sendBuffer);
2417  comm.ssend (charSendBuffer.getBytes (),
2418  charSendBuffer.getCharBuffer (),
2419  destRank, tag);
2420 }
2421 
2422 template<typename Ordinal, typename Packet>
2423 void Teuchos::send(
2424  const Comm<Ordinal>& comm,
2425  const Packet &send, const int destRank
2426  )
2427 {
2428  Teuchos::send<Ordinal,Packet>(comm,1,&send,destRank);
2429 }
2430 
2431 template<typename Ordinal, typename Packet>
2432 void Teuchos::ssend(
2433  const Comm<Ordinal>& comm,
2434  const Packet &send, const int destRank
2435  )
2436 {
2437  Teuchos::ssend<Ordinal,Packet>(comm,1,&send,destRank);
2438 }
2439 
2440 template<typename Ordinal, typename Packet>
2441 void Teuchos::send(
2442  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
2443  const Ordinal count, const Packet*const sendBuffer[], const int destRank
2444  )
2445 {
2446  TEUCHOS_TEST_FOR_EXCEPT(true); // ToDo: Implement and test when needed!
2447 }
2448 
2449 template<typename Ordinal, typename Packet, typename Serializer>
2450 void Teuchos::send(
2451  const Comm<Ordinal>& comm,
2452  const Serializer& serializer,
2453  const Ordinal count, const Packet sendBuffer[], const int destRank
2454  )
2455 {
2457  "Teuchos::CommHelpers: send<"
2458  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2459  <<">( value type )"
2460  );
2461  ConstValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2462  charSendBuffer(count,sendBuffer,rcp(&serializer,false));
2463  comm.send(
2464  charSendBuffer.getBytes(),charSendBuffer.getCharBuffer()
2465  ,destRank
2466  );
2467 }
2468 
2469 template<typename Ordinal, typename Packet>
2470 int Teuchos::receive(
2471  const Comm<Ordinal>& comm,
2472  const int sourceRank, const Ordinal count, Packet recvBuffer[]
2473  )
2474 {
2476  "Teuchos::CommHelpers: receive<"
2477  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2478  <<">( value type )"
2479  );
2480  ValueTypeSerializationBuffer<Ordinal,Packet>
2481  charRecvBuffer(count,recvBuffer);
2482  return comm.receive(
2483  sourceRank
2484  ,charRecvBuffer.getBytes(),charRecvBuffer.getCharBuffer()
2485  );
2486 }
2487 
2488 
2489 template<typename Ordinal, typename Packet>
2490 int Teuchos::receive(
2491  const Comm<Ordinal>& comm,
2492  const int sourceRank, Packet *recv
2493  )
2494 {
2495  return Teuchos::receive<Ordinal,Packet>(comm,sourceRank,1,recv);
2496 }
2497 
2498 
2499 template<typename Ordinal, typename Packet>
2500 int Teuchos::receive(
2501  const Comm<Ordinal>& comm, const Serializer<Ordinal,Packet> &serializer,
2502  const int sourceRank, const Ordinal count, Packet*const recvBuffer[]
2503  )
2504 {
2505  TEUCHOS_TEST_FOR_EXCEPT(true); // ToDo: Implement and test when needed!
2506 }
2507 
2508 template<typename Ordinal, typename Packet, typename Serializer>
2509 int Teuchos::receive(
2510  const Comm<Ordinal>& comm,
2511  const Serializer& serializer,
2512  const int sourceRank, const Ordinal count, Packet recvBuffer[]
2513  )
2514 {
2516  "Teuchos::CommHelpers: receive<"
2517  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2518  <<">( value type )"
2519  );
2520  ValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2521  charRecvBuffer(count,recvBuffer,rcp(&serializer,false));
2522  return comm.receive(
2523  sourceRank
2524  ,charRecvBuffer.getBytes(),charRecvBuffer.getCharBuffer()
2525  );
2526 }
2527 
2528 template<typename Ordinal, typename Packet>
2529 void Teuchos::readySend(
2530  const Comm<Ordinal>& comm,
2531  const ArrayView<const Packet> &sendBuffer,
2532  const int destRank
2533  )
2534 {
2536  "Teuchos::CommHelpers: readySend<"
2537  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2538  <<">( value type )"
2539  );
2540  ConstValueTypeSerializationBuffer<Ordinal,Packet>
2541  charSendBuffer(sendBuffer.size(), sendBuffer.getRawPtr());
2542  comm.readySend( charSendBuffer.getCharBufferView(), destRank );
2543 }
2544 
2545 template<typename Ordinal, typename Packet>
2546 void
2547 Teuchos::readySend (const Packet sendBuffer[],
2548  const Ordinal count,
2549  const int destRank,
2550  const int tag,
2551  const Comm<Ordinal>& comm)
2552 {
2554  "Teuchos::CommHelpers: readySend<"
2556  <<">( value type )"
2557  );
2559  buf_type charSendBuffer (count, sendBuffer);
2560  comm.readySend (charSendBuffer.getBytes (),
2561  charSendBuffer.getCharBuffer (),
2562  destRank, tag);
2563 }
2564 
2565 template<typename Ordinal, typename Packet>
2566 void Teuchos::readySend(
2567  const Comm<Ordinal>& comm,
2568  const Packet &send,
2569  const int destRank
2570  )
2571 {
2572  readySend<Ordinal, Packet>( comm, arrayView(&send,1), destRank );
2573 }
2574 
2575 template<typename Ordinal, typename Packet, typename Serializer>
2576 void Teuchos::readySend(
2577  const Comm<Ordinal>& comm,
2578  const Serializer& serializer,
2579  const ArrayView<const Packet> &sendBuffer,
2580  const int destRank
2581  )
2582 {
2584  "Teuchos::CommHelpers: readySend<"
2585  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2586  <<">( value type )"
2587  );
2588  ConstValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2589  charSendBuffer(sendBuffer.size(), sendBuffer.getRawPtr(), serializer);
2590  comm.readySend( charSendBuffer.getCharBufferView(), destRank );
2591 }
2592 
2593 template<typename Ordinal, typename Packet>
2596  const Comm<Ordinal>& comm,
2597  const ArrayRCP<const Packet> &sendBuffer,
2598  const int destRank
2599  )
2600 {
2602  "Teuchos::CommHelpers: isend<"
2603  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2604  <<">( value type )"
2605  );
2606  ConstValueTypeSerializationBuffer<Ordinal,Packet>
2607  charSendBuffer(sendBuffer.size(), sendBuffer.getRawPtr());
2608  RCP<CommRequest<Ordinal> > commRequest = comm.isend(
2609  charSendBuffer.getCharBufferView(), destRank );
2610  set_extra_data( sendBuffer, "buffer", inOutArg(commRequest) );
2611  return commRequest;
2612 }
2613 
2614 template<typename Ordinal, typename Packet>
2616 Teuchos::isend (const ArrayRCP<const Packet> &sendBuffer,
2617  const int destRank,
2618  const int tag,
2619  const Comm<Ordinal>& comm)
2620 {
2622  "Teuchos::isend<" << OrdinalTraits<Ordinal>::name () << ","
2623  << TypeNameTraits<Packet>::name () << ">");
2624  ConstValueTypeSerializationBuffer<Ordinal,Packet>
2625  charSendBuffer (sendBuffer.size (), sendBuffer.getRawPtr ());
2626  RCP<CommRequest<Ordinal> > commRequest =
2627  comm.isend (charSendBuffer.getCharBufferView (), destRank, tag);
2628  set_extra_data (sendBuffer, "buffer", inOutArg (commRequest));
2629  return commRequest;
2630 }
2631 
2632 template<typename Ordinal, typename Packet>
2635  const Comm<Ordinal>& comm,
2636  const RCP<const Packet> &send,
2637  const int destRank
2638  )
2639 {
2640  const ArrayRCP<const Packet> sendBuffer =
2641  arcpWithEmbeddedObj( send.get(), 0, 1, send, false );
2642  // 2008/07/29: rabartl: Above: I need to write a helper function to create
2643  // new ArrayRCP object given a single object to copy.
2644  return isend<Ordinal, Packet>( comm, sendBuffer, destRank );
2645 }
2646 
2647 template<typename Ordinal, typename Packet, typename Serializer>
2650  const Comm<Ordinal>& comm,
2651  const Serializer& serializer,
2652  const ArrayRCP<const Packet> &sendBuffer,
2653  const int destRank
2654  )
2655 {
2657  "Teuchos::CommHelpers: isend<"
2658  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2659  <<">( value type )"
2660  );
2661  ConstValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2662  charSendBuffer(sendBuffer.size(), sendBuffer.getRawPtr(), serializer);
2663  RCP<CommRequest<Ordinal> > commRequest = comm.isend(
2664  charSendBuffer.getCharBufferView(), destRank );
2665  set_extra_data( sendBuffer, "buffer", inOutArg(commRequest) );
2666  return commRequest;
2667 }
2668 
2669 template<typename Ordinal, typename Packet>
2672  const Comm<Ordinal>& comm,
2673  const ArrayRCP<Packet> &recvBuffer,
2674  const int sourceRank
2675  )
2676 {
2678  "Teuchos::ireceive<int, " << "," << TypeNameTraits<Packet>::name () << ">");
2679  ValueTypeSerializationBuffer<Ordinal,Packet>
2680  charRecvBuffer(recvBuffer.size(), recvBuffer.getRawPtr());
2681  RCP<CommRequest<Ordinal> > commRequest = comm.ireceive(
2682  charRecvBuffer.getCharBufferView(), sourceRank );
2683  set_extra_data( recvBuffer, "buffer", inOutArg(commRequest) );
2684  return commRequest;
2685 }
2686 
2687 template<typename Ordinal, typename Packet>
2689 Teuchos::ireceive (const Teuchos::ArrayRCP<Packet> &recvBuffer,
2690  const int sourceRank,
2691  const int tag,
2692  const Teuchos::Comm<Ordinal>& comm)
2693 {
2695  "Teuchos::ireceive<int, " << "," << TypeNameTraits<Packet>::name () << ">");
2696  ValueTypeSerializationBuffer<int, Packet>
2697  charRecvBuffer (recvBuffer.size (), recvBuffer.getRawPtr ());
2698  RCP<CommRequest<int> > commRequest =
2699  comm.ireceive (charRecvBuffer.getCharBufferView (), sourceRank, tag);
2700  set_extra_data (recvBuffer, "buffer", inOutArg (commRequest));
2701  return commRequest;
2702 }
2703 
2704 template<typename Ordinal, typename Packet>
2707  const Comm<Ordinal>& comm,
2708  const RCP<Packet> &recv,
2709  const int sourceRank
2710  )
2711 {
2712  const ArrayRCP<Packet> recvBuffer =
2713  arcpWithEmbeddedObj( recv.get(), 0, 1, recv, false );
2714  // 2008/07/29: rabartl: Above: I need to write a helper function to create
2715  // new ArrayRCP object given a single object to copy.
2716  return ireceive<Ordinal, Packet>( comm, recvBuffer, sourceRank );
2717 }
2718 
2719 template<typename Ordinal, typename Packet, typename Serializer>
2722  const Comm<Ordinal>& comm,
2723  const Serializer& serializer,
2724  const ArrayRCP<Packet> &recvBuffer,
2725  const int sourceRank
2726  )
2727 {
2729  "Teuchos::CommHelpers: ireceive<"
2730  <<OrdinalTraits<Ordinal>::name()<<","<<TypeNameTraits<Packet>::name()
2731  <<">( value type )"
2732  );
2733  ValueTypeSerializationBuffer<Ordinal,Packet,Serializer>
2734  charRecvBuffer(recvBuffer.size(), recvBuffer.getRawPtr(), serializer);
2735  RCP<CommRequest<Ordinal> > commRequest = comm.ireceive(
2736  charRecvBuffer.getCharBufferView(), sourceRank );
2737  set_extra_data( recvBuffer, "buffer", inOutArg(commRequest) );
2738  return commRequest;
2739 }
2740 
2741 template<typename Ordinal>
2742 void Teuchos::waitAll(
2743  const Comm<Ordinal>& comm,
2744  const ArrayView<RCP<CommRequest<Ordinal> > > &requests
2745  )
2746 {
2747  comm.waitAll(requests);
2748 }
2749 
2750 
2751 template<typename Ordinal>
2752 void
2753 Teuchos::waitAll (const Comm<Ordinal>& comm,
2754  const ArrayView<RCP<CommRequest<Ordinal> > >& requests,
2755  const ArrayView<RCP<CommStatus<Ordinal> > >& statuses)
2756 {
2757  comm.waitAll (requests, statuses);
2758 }
2759 
2760 
2761 template<typename Ordinal>
2763 Teuchos::wait (const Comm<Ordinal>& comm,
2764  const Ptr<RCP<CommRequest<Ordinal> > > &request)
2765 {
2766  return comm.wait (request);
2767 }
2768 
2769 
2770 #endif // TEUCHOS_COMM_HELPERS_HPP
void reduce< int, unsigned long >(const unsigned long sendBuf[], unsigned long recvBuf[], const int count, const EReductionType reductType, const int root, const Comm< int > &comm)
void reduce< int, long >(const long sendBuf[], long recvBuf[], const int count, const EReductionType reductType, const int root, const Comm< int > &comm)
RCP< T > rcp(const boost::shared_ptr< T > &sptr)
Conversion function that takes in a boost::shared_ptr object and spits out a Teuchos::RCP object...
ArrayView< T > arrayView(T *p, typename ArrayView< T >::size_type size)
Construct a const or non-const view to const or non-const data.
RCP< Teuchos::CommRequest< int > > ireceive< int, unsigned long long >(const Comm< int > &comm, const ArrayRCP< unsigned long long > &recvBuffer, const int sourceRank)
void set_extra_data(const T1 &extra_data, const std::string &name, const Ptr< ArrayRCP< T2 > > &p, EPrePostDestruction destroy_when=POST_DESTROY, bool force_unique=true)
Set extra data associated with a ArrayRCP object.
Ptr< T > inOutArg(T &arg)
create a non-persisting (required or optional) input/output argument for a function call...
void reduce(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[]) const
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, unsigned long >(const ArrayRCP< const unsigned long > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void send< int, float >(const Comm< int > &comm, const int count, const float sendBuffer[], const int destRank)
EReductionType
Predefined reduction operations that Teuchos::Comm understands.
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, float >(const ArrayRCP< const float > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
RCP< Teuchos::CommRequest< int > > ireceive< int, float >(const Comm< int > &comm, const ArrayRCP< float > &recvBuffer, const int sourceRank)
static void max(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[])
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, long long >(const ArrayRCP< const long long > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void gatherv< int, short >(const short sendBuf[], const int sendCount, short recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
void gather< int, unsigned long long >(const unsigned long long sendBuf[], const int sendCount, unsigned long long recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, short >(const ArrayRCP< const short > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void reduceAll< int, long >(const Comm< int > &comm, const EReductionType reductType, const int count, const long sendBuffer[], long globalReducts[])
void send< int, unsigned long long >(const Comm< int > &comm, const int count, const unsigned long long sendBuffer[], const int destRank)
RCP< Teuchos::CommRequest< int > > ireceive< int, double >(const Comm< int > &comm, const ArrayRCP< double > &recvBuffer, const int sourceRank)
RCP< Teuchos::CommRequest< int > > ireceive< int, short >(const Comm< int > &comm, const ArrayRCP< short > &recvBuffer, const int sourceRank)
void send< int, long >(const Comm< int > &comm, const int count, const long sendBuffer[], const int destRank)
void gather< int, unsigned int >(const unsigned int sendBuf[], const int sendCount, unsigned int recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
static void andOp(const Ordinal, const Packet[], Packet[])
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
void reduce< int, double >(const double sendBuf[], double recvBuf[], const int count, const EReductionType reductType, const int root, const Comm< int > &comm)
T * getRawPtr() const
Get the raw C++ pointer to the underlying object.
RawPointerConversionTraits< Container >::Ptr_t getRawPtr(const Container &c)
void gatherv< int, int >(const int sendBuf[], const int sendCount, int recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, double >(const ArrayRCP< const double > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void gatherv< int, long long >(const long long sendBuf[], const int sendCount, long long recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
void gather< int, long >(const long sendBuf[], const int sendCount, long recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
RCP< Teuchos::CommRequest< int > > ireceive< int, long long >(const Comm< int > &comm, const ArrayRCP< long long > &recvBuffer, const int sourceRank)
void send< int, int >(const Comm< int > &comm, const int count, const int sendBuffer[], const int destRank)
void reduce(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[]) const
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, unsigned int >(const ArrayRCP< const unsigned int > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void send< int, double >(const Comm< int > &comm, const int count, const double sendBuffer[], const int destRank)
void gather< int, int >(const int sendBuf[], const int sendCount, int recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
size_type size() const
The total number of entries in the array.
void gather< int, long long >(const long long sendBuf[], const int sendCount, long long recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
Standard logical AND operator for booleans.
#define TEUCHOS_COMM_TIME_MONITOR(FUNCNAME)
void reduceAll(const Comm< Ordinal > &comm, const ValueTypeReductionOp< Ordinal, Packet > &reductOp, const Ordinal count, const Packet sendBuffer[], Packet globalReducts[])
Wrapper for MPI_Allreduce that takes a custom reduction operator.
Standard min operator for types with value semantics.
This structure defines some basic traits for a scalar field type.
void scatter(const Packet sendBuf[], const Ordinal sendCount, Packet recvBuf[], const Ordinal recvCount, const Ordinal root, const Comm< Ordinal > &comm)
Wrapper for MPI_Scatter; scatter collective.
Base interface class for user-defined reduction operations for objects that use value semantics...
std::string toString(const any &rhs)
Converts the value in any to a std::string.
Standard summation operator for types with value semantics.
void gatherv< int, unsigned long >(const unsigned long sendBuf[], const int sendCount, unsigned long recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
static void andOp(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[])
void reduce(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[]) const
void reduceAll< int, unsigned int >(const Comm< int > &comm, const EReductionType reductType, const int count, const unsigned int sendBuffer[], unsigned int globalReducts[])
void send< int, long long >(const Comm< int > &comm, const int count, const long long sendBuffer[], const int destRank)
void reduceAll< int, short >(const Comm< int > &comm, const EReductionType reductType, const int count, const short sendBuffer[], short globalReducts[])
void reduce< int, unsigned long long >(const unsigned long long sendBuf[], unsigned long long recvBuf[], const int count, const EReductionType reductType, const int root, const Comm< int > &comm)
static void min(const Ordinal, const Packet[], Packet[])
void reduce< int, int >(const int sendBuf[], int recvBuf[], const int count, const EReductionType reductType, const int root, const Comm< int > &comm)
virtual RCP< CommRequest< Ordinal > > ireceive(const ArrayView< char > &recvBuffer, const int sourceRank) const =0
Non-blocking receive.
void send(const Comm< Ordinal > &comm, const Ordinal count, const Packet sendBuffer[], const int destRank)
Send objects that use values semantics to another process.
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, unsigned long long >(const ArrayRCP< const unsigned long long > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void reduceAll< int, double >(const Comm< int > &comm, const EReductionType reductType, const int count, const double sendBuffer[], double globalReducts[])
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, long >(const ArrayRCP< const long > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void gatherv< int, unsigned long long >(const unsigned long long sendBuf[], const int sendCount, unsigned long long recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
Standard Max operator for types with value semantics.
void gatherv< int, long >(const long sendBuf[], const int sendCount, long recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
Implementation of Teuchos wrappers for MPI.
Declaration of Teuchos::EReductionType enum, and related functions.
This structure defines some basic traits for the ordinal field type.
#define TEUCHOS_MAX(x, y)
void send(const Packet sendBuffer[], const Ordinal count, const int destRank, const int tag, const Comm< Ordinal > &comm)
Variant of send() that takes a tag (and restores the correct order of arguments). ...
void reduceAll< int, int >(const Comm< int > &comm, const EReductionType reductType, const int count, const int sendBuffer[], int globalReducts[])
void reduceAll< int, unsigned long long >(const Comm< int > &comm, const EReductionType reductType, const int count, const unsigned long long sendBuffer[], unsigned long long globalReducts[])
void gatherv< int, unsigned int >(const unsigned int sendBuf[], const int sendCount, unsigned int recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
virtual void readySend(const ArrayView< const char > &sendBuffer, const int destRank) const =0
Ready send of data from this process to another process.
RCP< Teuchos::CommRequest< int > > ireceive< int, unsigned int >(const Comm< int > &comm, const ArrayRCP< unsigned int > &recvBuffer, const int sourceRank)
TEUCHOSCOMM_LIB_DLL_EXPORT RCP< CommRequest< int > > isend< int, int >(const ArrayRCP< const int > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void reduceAll< int, unsigned long >(const Comm< int > &comm, const EReductionType reductType, const int count, const unsigned long sendBuffer[], unsigned long globalReducts[])
RCP< CommRequest< Ordinal > > ireceive(const ArrayRCP< Packet > &recvBuffer, const int sourceRank, const int tag, const Comm< Ordinal > &comm)
Variant of ireceive that takes a tag argument (and restores the correct order of arguments).
RCP< Teuchos::CommRequest< int > > ireceive< int, int >(const Comm< int > &comm, const ArrayRCP< int > &recvBuffer, const int sourceRank)
Templated array class derived from the STL std::vector.
RCP< Teuchos::CommRequest< int > > ireceive< int, unsigned long >(const Comm< int > &comm, const ArrayRCP< unsigned long > &recvBuffer, const int sourceRank)
void gatherv< int, double >(const double sendBuf[], const int sendCount, double recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)
Defines basic traits for the ordinal field type.
Default traits class that just returns typeid(T).name().
RCP< Teuchos::CommRequest< int > > isend(const ArrayRCP< const double > &sendBuffer, const int destRank, const int tag, const Comm< int > &comm)
void reduceAll< int, float >(const Comm< int > &comm, const EReductionType reductType, const int count, const float sendBuffer[], float globalReducts[])
void reduce(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[]) const
virtual void send(const Ordinal bytes, const char sendBuffer[], const int destRank) const =0
Possibly blocking send of data from this process to another process.
virtual void ssend(const Ordinal bytes, const char sendBuffer[], const int destRank) const =0
Always blocking send of data from this process to another process.
void ssend(const Packet sendBuffer[], const Ordinal count, const int destRank, const int tag, const Comm< Ordinal > &comm)
Variant of ssend() that takes a tag (and restores the correct order of arguments).
Defines basic traits for the scalar field type.
#define TEUCHOSCOMM_LIB_DLL_EXPORT
TEUCHOSCOMM_LIB_DLL_EXPORT void scatter(const int sendBuf[], const int sendCount, int recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
ArrayRCP< T > arcpWithEmbeddedObj(T *p, typename ArrayRCP< T >::size_type lowerOffset, typename ArrayRCP< T >::size_type size, const Embedded &embedded, bool owns_mem=true)
Create an ArrayRCP with and also put in an embedded object.
static void max(const Ordinal, const Packet[], Packet[])
Smart reference counting pointer class for automatic garbage collection.
RCP< Teuchos::CommRequest< int > > ireceive< int, long >(const Comm< int > &comm, const ArrayRCP< long > &recvBuffer, const int sourceRank)
void gather< int, short >(const short sendBuf[], const int sendCount, short recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
void scatterv(const Packet sendBuf[], const Ordinal sendCounts[], const Ordinal displs[], Packet recvBuf[], const Ordinal recvCount, const Ordinal root, const Comm< Ordinal > &comm)
#define TEUCHOS_MIN(x, y)
void send< int, short >(const Comm< int > &comm, const int count, const short sendBuffer[], const int destRank)
Defines basic traits returning the name of a type in a portable and readable way. ...
Definition of Teuchos::as, for conversions between types.
ValueTypeReductionOp< Ordinal, Packet > * createOp(const EReductionType reductType)
void readySend(const Packet sendBuffer[], const Ordinal count, const int destRank, const int tag, const Comm< Ordinal > &comm)
Variant of readySend() that accepts a message tag.
#define TEUCHOS_TEST_FOR_EXCEPT(throw_exception_test)
This macro is designed to be a short version of TEUCHOS_TEST_FOR_EXCEPTION() that is easier to call...
void scan(const Comm< Ordinal > &comm, const ValueTypeReductionOp< Ordinal, Packet > &reductOp, const Ordinal count, const Packet sendBuffer[], Packet scanReducts[])
Scan/Reduce array of objects that use value semantics using a user-defined reduction operator...
void gather< int, unsigned long >(const unsigned long sendBuf[], const int sendCount, unsigned long recvBuf[], const int recvCount, const int root, const Comm< int > &comm)
void reduceAll< int, long long >(const Comm< int > &comm, const EReductionType reductType, const int count, const long long sendBuffer[], long long globalReducts[])
Encapsulate how an array of const objects with value sematics is serialized into a const char[] array...
void send< int, unsigned long >(const Comm< int > &comm, const int count, const unsigned long sendBuffer[], const int destRank)
static void min(const Ordinal count, const Packet inBuffer[], Packet inoutBuffer[])
Reference-counted smart pointer for managing arrays.
void send< int, unsigned int >(const Comm< int > &comm, const int count, const unsigned int sendBuffer[], const int destRank)
void gatherv< int, float >(const float sendBuf[], const int sendCount, float recvBuf[], const int recvCounts[], const int displs[], const int root, const Comm< int > &comm)