source: XIOS/dev/dev_trunk_omp/src/transformation/Functions/reduction.cpp @ 1601

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

branch_openmp merged with trunk r1597

File size: 2.6 KB
Line 
1#include "reduction.hpp"
2#include "sum_reduction.hpp"
3#include "min_reduction.hpp"
4#include "max_reduction.hpp"
5#include "extract.hpp"
6#include "average_reduction.hpp"
7
8namespace xios {
9
10CReductionAlgorithm::CallBackMap* CReductionAlgorithm::reductionCreationCallBacks_ = 0;
11std::map<StdString,EReductionType> *CReductionAlgorithm::ReductionOperations_ptr = 0;
12
13bool CReductionAlgorithm::initReductionOperation(std::map<StdString,EReductionType>& m)
14{
15  // So so stupid way to intialize operation but it works ...
16  m["sum"] = TRANS_REDUCE_SUM;
17  CSumReductionAlgorithm::registerTrans();
18
19  m["min"] = TRANS_REDUCE_MIN;
20  CMinReductionAlgorithm::registerTrans();
21
22  m["max"] = TRANS_REDUCE_MAX;
23  CMaxReductionAlgorithm::registerTrans();
24
25  m["extract"] = TRANS_REDUCE_EXTRACT;
26  CExtractReductionAlgorithm::registerTrans();
27
28  m["average"] = TRANS_REDUCE_AVERAGE;
29  CAverageReductionAlgorithm::registerTrans();
30}
31
32bool CReductionAlgorithm::initReductionOperation()
33{
34  CReductionAlgorithm::ReductionOperations_ptr = new std::map<StdString,EReductionType>();
35  // So so stupid way to intialize operation but it works ...
36  (*CReductionAlgorithm::ReductionOperations_ptr)["sum"] = TRANS_REDUCE_SUM;
37  CSumReductionAlgorithm::registerTrans();
38
39  (*CReductionAlgorithm::ReductionOperations_ptr)["min"] = TRANS_REDUCE_MIN;
40  CMinReductionAlgorithm::registerTrans();
41
42  (*CReductionAlgorithm::ReductionOperations_ptr)["max"] = TRANS_REDUCE_MAX;
43  CMaxReductionAlgorithm::registerTrans();
44
45  (*CReductionAlgorithm::ReductionOperations_ptr)["extract"] = TRANS_REDUCE_EXTRACT;
46  CExtractReductionAlgorithm::registerTrans();
47
48  (*CReductionAlgorithm::ReductionOperations_ptr)["average"] = TRANS_REDUCE_AVERAGE;
49  CAverageReductionAlgorithm::registerTrans();
50}
51
52
53CReductionAlgorithm* CReductionAlgorithm::createOperation(EReductionType reduceType)
54{
55  int reduceTypeInt = reduceType;
56  CallBackMap::const_iterator it = (*reductionCreationCallBacks_).find(reduceType);
57  if ((*reductionCreationCallBacks_).end() == it)
58  {
59     ERROR("CReductionAlgorithm::createOperation(EReductionType reduceType)",
60           << "Operation type " << reduceType
61           << "doesn't exist. Please define.");
62  }
63  return (it->second)();
64}
65
66bool CReductionAlgorithm::registerOperation(EReductionType reduceType, CreateOperationCallBack createFn)
67{
68  if (0 == reductionCreationCallBacks_)
69    reductionCreationCallBacks_ = new CallBackMap();
70
71  return (*reductionCreationCallBacks_).insert(make_pair(reduceType, createFn)).second;
72}
73
74bool CReductionAlgorithm::unregisterOperation(EReductionType reduceType)
75{
76  int reduceTypeInt = reduceType;
77  return (1 == (*reductionCreationCallBacks_).erase(reduceType));
78}
79
80
81}
Note: See TracBrowser for help on using the repository browser.