summaryrefslogtreecommitdiffstats
path: root/src/H5Cprivate.h
diff options
context:
space:
mode:
authorMike McGreevy <mamcgree@hdfgroup.org>2009-05-12 22:07:21 (GMT)
committerMike McGreevy <mamcgree@hdfgroup.org>2009-05-12 22:07:21 (GMT)
commit36431fa74c46846e52ba465a20fc6e0ad7efb5c6 (patch)
tree249a132c38472e6d48eacb22592a86179971253b /src/H5Cprivate.h
parent2a3c76f6851d7767b7c024b3ea5d947f88a05388 (diff)
downloadhdf5-36431fa74c46846e52ba465a20fc6e0ad7efb5c6.zip
hdf5-36431fa74c46846e52ba465a20fc6e0ad7efb5c6.tar.gz
hdf5-36431fa74c46846e52ba465a20fc6e0ad7efb5c6.tar.bz2
[svn-r16938] 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 e252134..e5a2dba 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.