Changeset 1769
- Timestamp:
- 11/14/19 10:11:34 (3 years ago)
- Location:
- XIOS/dev/dev_trunk_omp/src
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/dev/dev_trunk_omp/src/filter/binary_arithmetic_filter.cpp
r1689 r1769 18 18 { 19 19 bool building_graph = this->tag ? data[0]->timestamp >= this->start_graph && data[0]->timestamp <= this->end_graph : false; 20 // bool building_graph = true;21 20 int unique_filter_id; 22 21 bool firstround; … … 107 106 { 108 107 bool building_graph = this->tag ? data[0]->timestamp >= this->start_graph && data[0]->timestamp <= this->end_graph : false; 109 // bool building_graph = true;110 108 int unique_filter_id; 111 109 bool firstround; -
XIOS/dev/dev_trunk_omp/src/filter/ternary_arithmetic_filter.cpp
r1689 r1769 500 500 { 501 501 expression.assign(*yacc_globalInputText_ptr, 0, yacc_globalInputText_ptr->size()-1); 502 std::cout<<"expression = "<<expression;503 502 /* Nothing to do */ 504 503 }; -
XIOS/dev/dev_trunk_omp/src/node/field.cpp
r1689 r1769 1458 1458 TRY 1459 1459 { 1460 if(CXios::isClient) std::cout<<"getSelfReference field_id = "<<this->getId()<<" start_graph = "<<start_graph<<" end_graph = "<<end_graph<<std::endl;1460 //if(CXios::isClient) std::cout<<"getSelfReference field_id = "<<this->getId()<<" start_graph = "<<start_graph<<" end_graph = "<<end_graph<<std::endl; 1461 1461 1462 1462 if (instantDataFilter || !hasExpression()) … … 1545 1545 1546 1546 1547 if(temporalFilter->parent_filters[0]->tag) temporalFilter->tag=true; 1547 // if(temporalFilter->parent_filters[0]->tag) temporalFilter->tag=true; 1548 temporalFilter->tag = temporalFilter->parent_filters[0]->tag; 1549 temporalFilter->start_graph = temporalFilter->parent_filters[0]->start_graph; 1550 temporalFilter->end_graph = temporalFilter->parent_filters[0]->end_graph; 1548 1551 1549 1552 // temporalFilter->start_graph = filter_start; -
XIOS/dev/dev_trunk_omp/src/parse_expr/filter_expr_node.cpp
r1681 r1769 424 424 425 425 std::shared_ptr<CFieldFieldFieldArithmeticFilter> filter(new CFieldFieldFieldArithmeticFilter(gc, opId)); 426 std::cout<<"std::shared_ptr<CFieldFieldFieldArithmeticFilter> filter(new CFieldFieldFieldArithmeticFilter(gc, opId))" <<std::endl;427 426 ch1->connectOutput(filter, 0); 428 427 ch2->connectOutput(filter, 1); -
XIOS/dev/dev_trunk_omp/src/transformation/Functions/average_reduction.cpp
r1677 r1769 33 33 bool ignoreMissingValue, bool firstPass) 34 34 { 35 std::cout<<"================================ CAverageReductionAlgorithm::apply"<<std::endl;36 35 if (resetWeight_) { weights_.resize(flagInitial.size()); weights_ = 1.0; resetWeight_ = false; } 37 36 -
XIOS/dev/dev_trunk_omp/src/transformation/Functions/extract.cpp
r1677 r1769 32 32 bool ignoreMissingValue, bool firstPass) 33 33 { 34 std::cout<<"================================ CExtractReductionAlgorithm::apply"<<std::endl;35 34 int nbLocalIndex = localIndex.size(); 36 35 int currentlocalIndex = 0; -
XIOS/dev/dev_trunk_omp/src/transformation/Functions/max_reduction.cpp
r1677 r1769 33 33 bool ignoreMissingValue, bool firstPass) 34 34 { 35 std::cout<<"================================ CMaxReductionAlgorithm::apply"<<std::endl;36 35 if (ignoreMissingValue) 37 36 { -
XIOS/dev/dev_trunk_omp/src/transformation/Functions/min_reduction.cpp
r1677 r1769 33 33 bool ignoreMissingValue, bool firstPass) 34 34 { 35 std::cout<<"================================ CMinReductionAlgorithm::apply"<<std::endl;36 35 if (ignoreMissingValue) 37 36 { -
XIOS/dev/dev_trunk_omp/src/transformation/axis_algorithm_extract_domain.cpp
r1677 r1769 81 81 TRY 82 82 { 83 std::cout<<"================================ CAxisAlgorithmExtractDomain::apply"<<std::endl;84 83 reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 85 84 } -
XIOS/dev/dev_trunk_omp/src/transformation/axis_algorithm_reduce_axis.cpp
r1677 r1769 88 88 TRY 89 89 { 90 std::cout<<"================================ CAxisAlgorithmReduceAxis::apply"<<std::endl;91 90 reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 92 91 } -
XIOS/dev/dev_trunk_omp/src/transformation/axis_algorithm_reduce_domain.cpp
r1677 r1769 91 91 TRY 92 92 { 93 std::cout<<"================================ CAxisAlgorithmReduceDomain::apply"<<std::endl;94 93 reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 95 94 } -
XIOS/dev/dev_trunk_omp/src/transformation/domain_algorithm_interpolate.cpp
r1745 r1769 1063 1063 TRY 1064 1064 { 1065 std::cout<<"================================ CDomainAlgorithmInterpolate::apply"<<std::endl;1066 1065 int nbLocalIndex = localIndex.size(); 1067 1066 double defaultValue = std::numeric_limits<double>::quiet_NaN(); -
XIOS/dev/dev_trunk_omp/src/transformation/scalar_algorithm_extract_axis.cpp
r1677 r1769 69 69 TRY 70 70 { 71 std::cout<<"================================ CScalarAlgorithmExtractAxis::apply"<<std::endl;72 71 reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 73 72 } -
XIOS/dev/dev_trunk_omp/src/transformation/scalar_algorithm_reduce_axis.cpp
r1677 r1769 98 98 TRY 99 99 { 100 std::cout<<"================================ CScalarAlgorithmTransformation::apply"<<std::endl;101 100 reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 102 101 } -
XIOS/dev/dev_trunk_omp/src/transformation/scalar_algorithm_reduce_scalar.cpp
r1677 r1769 95 95 TRY 96 96 { 97 std::cout<<"================================ CScalarAlgorithmReduceScalar::apply"<<std::endl;98 97 reduction_->apply(localIndex, dataInput, dataOut, flagInitial, ignoreMissingValue, firstPass); 99 98 } -
XIOS/dev/dev_trunk_omp/src/workflow_graph.cpp
r1681 r1769 77 77 for (auto it=mapFilters_ptr_with_info->begin(); it != mapFilters_ptr_with_info->end(); it++) 78 78 { 79 // std::cout<<"it->first = "<<it->first<<std::endl;80 79 filters[it->first]=it->second.filter_name; 81 80 }
Note: See TracChangeset
for help on using the changeset viewer.