summaryrefslogtreecommitdiffstats
path: root/src/H5Cprivate.h
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2009-05-12 22:07:41 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2009-05-12 22:07:41 (GMT)
commit58cda2617e6857e1b704f7c51042f2e48a389317 (patch)
treefef53620514cb4a209b009c9ae77b0b7e02b14bd /src/H5Cprivate.h
parent985b323bd49547a268f23f005726392989f9d50b (diff)
downloadhdf5-58cda2617e6857e1b704f7c51042f2e48a389317.zip
hdf5-58cda2617e6857e1b704f7c51042f2e48a389317.tar.gz
hdf5-58cda2617e6857e1b704f7c51042f2e48a389317.tar.bz2
[svn-r16939] Purpose:
Modifying default cache configuration, and adding an #ifdef to allow for a separate default configuration when parallel is enabled. This is being modified in order to address an observed performance problem with the current default configuration. Description of Changes: - increasing maximum cache size from 16MB to 32MB - increasing maximum entry size from 10MB to 32MB - decreasing min_clean_fraction from 0.3 to 0.01 in serial case - increasing flash_multiple from 1.0 to 1.4 in serial case Tested: jam
Diffstat (limited to 'src/H5Cprivate.h')
-rw-r--r--src/H5Cprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Cprivate.h b/src/H5Cprivate.h
index 93e4a31..b3c16eb 100644
--- a/src/H5Cprivate.h
+++ b/src/H5Cprivate.h
@@ -46,7 +46,7 @@
*
* JRM - 5/17/04
*/
-#define H5C_MAX_ENTRY_SIZE ((size_t)(10 * 1024 * 1024))
+#define H5C_MAX_ENTRY_SIZE ((size_t)(32 * 1024 * 1024))
/* H5C_COLLECT_CACHE_STATS controls overall collection of statistics
* on cache activity. In general, this #define should be set to 0.