Renamed crystallize_size -> crystal_size
The original name was a bit of a mouthful. Also dropped the default crystal_size in the test/bench runners block_size/4 -> block_size/8. I'm already noticing large amounts of inflation when blocks are fragmented, though I am experimenting with a rather small fragment_size right now. Future benchmarks/experimentation is required to figure out good values for these.
This commit is contained in:
@@ -184,7 +184,7 @@ code = '''
|
||||
seen[tinfo.u.mdir.u.m.blocks[0] / 8]
|
||||
|= 1 << (tinfo.u.mdir.u.m.blocks[0] % 8);
|
||||
|
||||
} else if (tinfo.tag == LFSR_TAG_BTREE) {
|
||||
} else if (tinfo.tag == LFSR_TAG_BRANCH) {
|
||||
printf("traversal: 0x%x btree 0x%x.%x\n",
|
||||
tinfo.tag,
|
||||
tinfo.u.rbyd.block, tinfo.u.rbyd.trunk);
|
||||
@@ -339,7 +339,7 @@ code = '''
|
||||
seen[tinfo.u.mdir.u.m.blocks[0] / 8]
|
||||
|= 1 << (tinfo.u.mdir.u.m.blocks[0] % 8);
|
||||
|
||||
} else if (tinfo.tag == LFSR_TAG_BTREE) {
|
||||
} else if (tinfo.tag == LFSR_TAG_BRANCH) {
|
||||
printf("traversal: 0x%x btree 0x%x.%x\n",
|
||||
tinfo.tag,
|
||||
tinfo.u.rbyd.block, tinfo.u.rbyd.trunk);
|
||||
@@ -484,7 +484,7 @@ code = '''
|
||||
seen[tinfo.u.mdir.u.m.blocks[0] / 8]
|
||||
|= 1 << (tinfo.u.mdir.u.m.blocks[0] % 8);
|
||||
|
||||
} else if (tinfo.tag == LFSR_TAG_BTREE) {
|
||||
} else if (tinfo.tag == LFSR_TAG_BRANCH) {
|
||||
printf("traversal: 0x%x btree 0x%x.%x\n",
|
||||
tinfo.tag,
|
||||
tinfo.u.rbyd.block, tinfo.u.rbyd.trunk);
|
||||
|
||||
Reference in New Issue
Block a user