-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
12 lines (10 loc) · 916 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
jacksonBenchmark-macos:
./gradlew :kotlinx-serialization-smile-benchmark:jvmBenchmarkJar
java -XX:-BackgroundCompilation -jar kotlinx-serialization-smile-benchmark/build/benchmarks/jvm/jars/kotlinx-serialization-smile-benchmark-jvm-jmh-1.0-SNAPSHOT-JMH.jar \
-prof async:libPath=$(shell pwd)/kotlinx-serialization-smile-benchmark/libasyncProfiler/libasyncProfiler.dylib\;output=jfr\;dir=profile-results \
io.github.vooft.kotlinsmile.JacksonSmileBenchmar
jacksonBenchmark-linux:
./gradlew :kotlinx-serialization-smile-benchmark:jvmBenchmarkJar
java -jar kotlinx-serialization-smile-benchmark/build/benchmarks/jvm/jars/kotlinx-serialization-smile-benchmark-jvm-jmh-1.0-SNAPSHOT-JMH.jar \
-prof async:libPath=$(shell pwd)/kotlinx-serialization-smile-benchmark/libasyncProfiler/libasyncProfiler.so\;event=cache-misses\;output=jfr\;dir=profile-results \
io.github.vooft.kotlinsmile.JacksonSmileBenchmar