Ignore:
Timestamp:
05/13/22 10:51:23 (2 years ago)
Author:
jderouillat
Message:

Added dedicated options to manage send/recv checksum operations, this new xios parameters are respectively called checksum_send_fields/checksum_recv_fields (set to false by default)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/cxios.cpp

    r1704 r2330  
    4343  double CXios::recvFieldTimeout = 300.0; 
    4444  bool CXios::checkEventSync=false ; 
     45  bool CXios::checkSumRecv=false ; 
     46  bool CXios::checkSumSend=false ; 
    4547  
    4648  //! Parse configuration file and create some objects from it 
     
    9395    checkEventSync = getin<bool>("check_event_sync", checkEventSync); 
    9496 
     97    checkSumSend = getin<bool>("checksum_send_fields", false); 
     98    checkSumRecv = getin<bool>("checksum_recv_fields", false); 
     99  
    95100    globalComm=MPI_COMM_WORLD ; 
    96101  } 
Note: See TracChangeset for help on using the changeset viewer.