[MOAB-dev] r4212 - MOAB/trunk/src/io

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Tue Oct 12 08:12:51 CDT 2010


Author: kraftche
Date: 2010-10-12 08:12:51 -0500 (Tue, 12 Oct 2010)
New Revision: 4212

Modified:
   MOAB/trunk/src/io/ReadHDF5.cpp
   MOAB/trunk/src/io/ReadHDF5Dataset.cpp
Log:
fix typo in debug output

Modified: MOAB/trunk/src/io/ReadHDF5.cpp
===================================================================
--- MOAB/trunk/src/io/ReadHDF5.cpp	2010-10-11 21:37:28 UTC (rev 4211)
+++ MOAB/trunk/src/io/ReadHDF5.cpp	2010-10-12 13:12:51 UTC (rev 4212)
@@ -3154,7 +3154,7 @@
     int nn = 0;
     size_t offset = 0;
     while (!val_reader.done()) {
-      dbgOut.printf( 3, "Reading chunk %d of \"%s\" IDs\n", ++nn, tn.c_str() );
+      dbgOut.printf( 3, "Reading chunk %d of \"%s\" values\n", ++nn, tn.c_str() );
       size_t count;
       val_reader.read( dataBuffer, count );
       if (MB_TYPE_HANDLE == mbtype) {

Modified: MOAB/trunk/src/io/ReadHDF5Dataset.cpp
===================================================================
--- MOAB/trunk/src/io/ReadHDF5Dataset.cpp	2010-10-11 21:37:28 UTC (rev 4211)
+++ MOAB/trunk/src/io/ReadHDF5Dataset.cpp	2010-10-12 13:12:51 UTC (rev 4212)
@@ -27,7 +27,7 @@
 
 // Selection of hyperslabs appears to be superlinear.  Don't try to select
 // more than a few thousand at a time or things start to get real slow.
-const size_t DEFAULT_HYPERSLAB_SELECTION_LIMIT = 1000;
+const size_t DEFAULT_HYPERSLAB_SELECTION_LIMIT = 2500;
 size_t ReadHDF5Dataset::hyperslabSelectionLimit = DEFAULT_HYPERSLAB_SELECTION_LIMIT;
 void ReadHDF5Dataset::default_hyperslab_selection_limit()
   { hyperslabSelectionLimit = DEFAULT_HYPERSLAB_SELECTION_LIMIT; }


























More information about the moab-dev mailing list