forked from LMAX-Exchange/disruptor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunoffheap.sh
More file actions
executable file
·21 lines (15 loc) · 851 Bytes
/
Copy pathrunoffheap.sh
File metadata and controls
executable file
·21 lines (15 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
rm *-gc.log
ARGS="$JAVA_HOME/bin/java -mx1g"
GCARGS="-verbose:gc -XX:+PrintGCDateStamps -XX:+PrintGCApplicationStoppedTime -XX:+UseParNewGC -XX:+UseConcMarkSweepGC -XX:MaxDirectMemorySize=1g"
CPATH="-cp build/classes/main:build/classes/perf:templib/*.jar"
BIN="perf stat -e L1-dcache-loads -e L1-dcache-load-misses -e LLC-loads -e LLC-load-misses -e dTLB-loads -e dTLB-load-misses"
echo "Running OffHeap..."
$BIN $ARGS $GCARGS -Xloggc:simple-gc.log $CPATH com.lmax.disruptor.offheap.OneToOneOffHeapThroughputTest
echo "Done"
echo "Running OnHeap..."
$BIN $ARGS $GCARGS -Xloggc:custom-gc.log $CPATH com.lmax.disruptor.offheap.OneToOneOnHeapThroughputTest
echo "Done"
echo "Running Sliced OnHeap..."
$BIN $ARGS $GCARGS -Xloggc:custom-gc.log $CPATH -Dsliced=true com.lmax.disruptor.offheap.OneToOneOnHeapThroughputTest
echo "Done"