Changeset 1236 for XIOS/dev/XIOS_DEV_CMIP6/src/node/axis.hpp
- Timestamp:
- 08/04/17 16:03:34 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/dev/XIOS_DEV_CMIP6/src/node/axis.hpp
r1235 r1236 73 73 int getOffsetWrittenIndexes() const; 74 74 75 std::map<int, StdSize> getAttributesBufferSize( );75 std::map<int, StdSize> getAttributesBufferSize(CContextClient* client); 76 76 77 77 /// Test /// … … 156 156 //! True if and only if the data defined on the axis can be outputted in a compressed way 157 157 bool isCompressible_; 158 std::map< int,int> nbConnectedClients_; // Mapping of number of communicating client to a server159 boost::unordered_map<int, vector<size_t> > indSrv_; // Global index of each client sent to server160 std::map<int, vector<int> > indWrittenSrv_; // Global written index of each client sent to server158 std::map<CContextClient*, map<int,int> > nbSenders; // Mapping of number of communicating client to a server 159 std::map<CContextClient*, boost::unordered_map<int, vector<size_t> > > indSrv_; // Global index of each client sent to server 160 // std::map<int, vector<int> > indWrittenSrv_; // Global written index of each client sent to server 161 161 boost::unordered_map<size_t,size_t> globalLocalIndexMap_; 162 162 std::vector<int> indexesToWrite; 163 163 int numberWrittenIndexes_, totalNumberWrittenIndexes_, offsetWrittenIndexes_; 164 std:: vector<int> connectedServerRank_;164 std::map<CContextClient*, std::vector<int> > connectedServerRank_; 165 165 bool hasBounds; 166 166 bool hasLabel;
Note: See TracChangeset
for help on using the changeset viewer.