Set some constants to values appropriate for my desktop.

This commit is contained in:
Sears Russell 2004-10-20 06:48:29 +00:00
parent 281781dfd0
commit 70b8aca134
4 changed files with 12 additions and 4 deletions

View file

@ -33,7 +33,9 @@ for(my $i = 1; $i <= 10; $i += .5) {
print EVERYTHING "./naiveHash 1 $insert_count\n";
print EVERYTHING "./arrayListSet 1 $insert_count\n";
print EVERYTHING "./berkeleyDB/bdbRaw 1 $insert_count\n";
print EVERYTHING "./berkeleyDB/bdbHash 1 $insert_count\n";
if($i < 4) {
print EVERYTHING "./berkeleyDB/bdbHash 1 $insert_count\n";
}
}

View file

@ -76,9 +76,10 @@ terms specified in this license.
#define PAGE_SIZE 4096
/* #define MAX_BUFFER_SIZE 100003 */
#define MAX_BUFFER_SIZE 20029
/*#define MAX_BUFFER_SIZE 10007 */
/*#define MAX_BUFFER_SIZE 5003*/
#define MAX_BUFFER_SIZE 2003
/*#define MAX_BUFFER_SIZE 2003 */
/* #define MAX_BUFFER_SIZE 71 */
/*#define MAX_BUFFER_SIZE 7 */
/*#define BUFFER_ASOOCIATIVE 2 */

View file

@ -24,6 +24,9 @@
please see: http://mission.base.com/.
$Log$
Revision 1.6 2004/10/20 06:48:27 sears
Set some constants to values appropriate for my desktop.
Revision 1.5 2004/10/19 04:45:42 sears
Speedups, most notably in the logging subsystem.
@ -79,8 +82,10 @@ static int rcsid_fct() { return( rcsid ? 0 : rcsid_fct() ); }
/*****************************************************************************/
/*#define PBL_HASHTABLE_SIZE 1019 */
/*#define PBL_HASHTABLE_SIZE 2017*/
#define PBL_HASHTABLE_SIZE 2048
/*#define PBL_HASHTABLE_SIZE 2048*/
/* #define PBL_HASHTABLE_SIZE 5003 */
#define PBL_HASHTABLE_SIZE 16384
/*#define PBL_HASHTABLE_SIZE 8192*/
/*#define PBL_HASHTABLE_SIZE 100003 */
/*****************************************************************************/

View file

@ -14,7 +14,7 @@ my $CI99_9 = 7;
### How tight should the CI be?
my $myCI = $CI95;
my $maxRuns = 20;
my $maxRuns = 10;
my $plusMinus = 0.05;