Hyperfine: Script re-org

This commit is contained in:
Gunnar Morling
2024-01-09 21:26:29 +01:00
committed by GitHub
parent 42e5ca1435
commit fa1ca65bfd
74 changed files with 369 additions and 123 deletions

View File

@@ -18,12 +18,10 @@
if [ -f ./image_calculateaverage_thomaswue ]; then
echo "Picking up existing native image, delete the file to select JVM mode." 1>&2
time ./image_calculateaverage_thomaswue
./image_calculateaverage_thomaswue
else
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk use java 21.0.1-graal 1>&2
JAVA_OPTS="--enable-preview"
echo "Chosing to run the app in JVM mode as no native image was found, use additional_build_step_thomaswue.sh to generate." 1>&2
time java $JAVA_OPTS --class-path target/average-1.0.0-SNAPSHOT.jar dev.morling.onebrc.CalculateAverage_thomaswue
java $JAVA_OPTS --class-path target/average-1.0.0-SNAPSHOT.jar dev.morling.onebrc.CalculateAverage_thomaswue
fi