Changeset 832 for XIOS/trunk/src/filter


Ignore:
Timestamp:
03/23/16 16:11:13 (8 years ago)
Author:
mhnguyen
Message:

Weight computation of dynamic transformation is done only one for each time stamp

+) Each weight computation of dynamic transformation attached to timestamp
+) Remove some redundant codes

Test
+) On Curie
+) All tests pass

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/filter/spatial_transform_filter.cpp

    r827 r832  
    8787        std::vector<CArray<double,1>* > dataAuxInputs(data.size()-1); 
    8888        for (size_t idx = 0; idx < dataAuxInputs.size(); ++idx) dataAuxInputs[idx] = &(data[idx+1]->data); 
    89         gridTransformation->computeAll(dataAuxInputs); 
     89        gridTransformation->computeAll(dataAuxInputs, packet->timestamp); 
    9090      } 
    9191      packet->data.resize(gridTransformation->getGridDestination()->storeIndex_client.numElements()); 
Note: See TracChangeset for help on using the changeset viewer.