-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Organized the lsm-sim directory a bit.
- Loading branch information
1 parent
b6e6ede
commit 943b338
Showing
108 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
### Vanilla LRU comparison with partitioned\_LRU | ||
Comparison between typical LRU policy and LRU partitions. | ||
|
||
# LSM-SIM Commit | ||
b6e6ede222b1a7695149469059222ad041384980 | ||
|
||
# Parameters | ||
app : 19 | ||
trace : ~/traces/app19 | ||
partitions : {1, 8, 16, 1024, 16384, 1048577} for partitioned\_LRU | ||
|
||
# Description | ||
|
||
This experiment will run a single iteration of the app19 trace on traditional | ||
LRU, and 5 traces of increasing partitioning i.e. 1, 4, 16, 16384, 1048577}. | ||
The traditional LRU run is purely a control case to verify that traditional\_LRU | ||
is correct and displays the same numbers as partitioned\_LRU when run with a | ||
single partition. | ||
|
18 changes: 18 additions & 0 deletions
18
experiments/partitioning/experiments/partitioned_vs_vanilla/partitioned_vs_vanilla.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
partitions="1 8 16 1024 16384 1048577" | ||
|
||
for partition in $partitions; do | ||
~/projects/lsm-sim/lsm-sim -a 19 \ | ||
-p partitioned_LRU \ | ||
-Y $partition \ | ||
-v \ | ||
-f ~/traces/app19 > partitioned_LRU_19_${partition}.data 2>&1 & | ||
done | ||
|
||
~/projects/lsm-sim/lsm-sim -a 19 \ | ||
-p lru \ | ||
-v \ | ||
-f ~/traces/app19 > LRU_19.data 2>&1 & | ||
|
||
wait |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.