Changeset d6628a6
- Timestamp:
- 04/02/18 11:01:05 (7 years ago)
- Branches:
- master, pympi
- Children:
- 6461f57
- Parents:
- 56b997e
- git-author:
- Hal Finkel <hfinkel@…> (04/02/18 11:01:05)
- git-committer:
- Hal Finkel <hfinkel@…> (04/02/18 11:01:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GenericIO.cxx
r56b997e rd6628a6 735 735 if (Rank == 0) { 736 736 double Rate = ((double) FileSize) / MaxTotalTime / (1024.*1024.); 737 cout << "Wrote " << Vars.size() << " variables to " << FileName <<738 " (" << FileSize << " bytes) in " << MaxTotalTime << "s: " <<739 Rate << " MB/s" <<endl;737 std::cout << "Wrote " << Vars.size() << " variables to " << FileName << 738 " (" << FileSize << " bytes) in " << MaxTotalTime << "s: " << 739 Rate << " MB/s" << std::endl; 740 740 } 741 741 … … 1332 1332 if (Rank == 0 && PrintStats) { 1333 1333 double Rate = ((double) AllTotalReadSize) / MaxTotalTime / (1024.*1024.); 1334 cout << "Read " << Vars.size() << " variables from " << FileName <<1335 " (" << AllTotalReadSize << " bytes) in " << MaxTotalTime << "s: " <<1336 Rate << " MB/s [excluding header read]" <<endl;1334 std::cout << "Read " << Vars.size() << " variables from " << FileName << 1335 " (" << AllTotalReadSize << " bytes) in " << MaxTotalTime << "s: " << 1336 Rate << " MB/s [excluding header read]" << std::endl; 1337 1337 } 1338 1338 }
Note: See TracChangeset
for help on using the changeset viewer.