Ignore:
Timestamp:
05/13/22 10:39:51 (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/dev/dev_ym/XIOS_COUPLING/src/cxios.cpp

    r2310 r2329  
    5151  double CXios::recvFieldTimeout = 300.0; 
    5252  bool CXios::checkEventSync=false ; 
     53  bool CXios::checkSumRecv=false ; 
     54  bool CXios::checkSumSend=false ; 
    5355 
    5456  CDaemonsManager*    CXios::daemonsManager_=nullptr ; 
     
    109111 
    110112    checkEventSync = getin<bool>("check_event_sync", checkEventSync); 
     113     
     114    checkSumSend = getin<bool>("checksum_send_fields", false); 
     115    checkSumRecv = getin<bool>("checksum_recv_fields", false); 
    111116 
    112117    globalComm=MPI_COMM_WORLD ; 
Note: See TracChangeset for help on using the changeset viewer.