-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbenchmarker.sh
More file actions
24 lines (23 loc) · 849 Bytes
/
benchmarker.sh
File metadata and controls
24 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
echo "*********"
echo "Overall install"
mvn clean install
echo "*********"
echo "Start Benchmarks"
echo "*********"
echo "----------"
echo "JPMML"
cd ./jpmml-benchmark
java -jar target/jpmml-benchmarks.jar -jvmArgs "-Xms4g -Xmx4g" -foe true -rf json -rff jpmml-results.json SimpleLinearRegressionBenchmark
echo "----------"
echo "TRUSTY - NO DROOLS"
cd ../trusty-nodrools-benchmark
java -jar target/trusty-nodrools-benchmark.jar -jvmArgs "-Xms4g -Xmx4g" -foe true -rf json -rff trusty-nodrools-results.json SimpleLinearRegressionBenchmark
echo "----------"
echo "TRUSTY - DROOLS"
cd ../trusty-drools-benchmark
java -jar target/trusty-drools-benchmarks.jar -jvmArgs "-Xms4g -Xmx4g" -foe true -rf json -rff trusty-drools-results.json SimpleLinearRegressionBenchmark
echo "----------"
echo "*********"
echo "All done! Bye"
echo "*********"