-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: roll back benchmarks to use deprecated way of setting config so…
…urces. Add script to run benchmark with parameters.
- Loading branch information
1 parent
437084c
commit e480d7d
Showing
5 changed files
with
63 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
$gestaltVersions = @("0.25.0", "0.24.6", "0.24.5", "0.24.4", "0.24.3", "0.24.2", "0.24.1", "0.24.0", "0.23.3", "0.23.2", "0.23.1", "0.23.0", "0.22.1", "0.21.0", "0.20.6", "0.20.5", "0.20.4", "0.20.3", "0.20.2", "0.20.1", "0.19.0", "0.18.0", "0.16.6", "0.16.5", "0.16.4", "0.16.3", "0.16.2", "0.16.1", "0.16.0", "0.15.0", "0.14.1", "0.14.0", "0.13.0", "0.12.0") | ||
#$gestaltVersions = @("0.25.0", "0.24.6") | ||
#jdkVersions = @(11 17 21) | ||
$jdkVersions = @(11) | ||
|
||
foreach ($jdkVersion in $jdkVersions) | ||
{ | ||
foreach ($gestaltVersion in $gestaltVersions) | ||
{ | ||
$gradleCommand = "./gradlew jmh -PgestaltVersion=`"$gestaltVersion`" -PjdkVersion=`"$jdkVersion`"" | ||
Invoke-Expression $gradleCommand | ||
} | ||
} |
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,14 @@ | ||
#!/bin/sh | ||
|
||
#gestalt_versions=(0.25.0 0.24.6 0.24.5 0.24.4 0.24.3 0.24.2 0.24.1 0.24.0 0.23.3 0.23.2 0.23.1 0.23.0 0.22.1 0.21.0) | ||
gestalt_versions=(0.25.0 0.24.6) | ||
#jdk_version=(11 17 21) | ||
jdk_version=(11) | ||
|
||
for jdk in ${jdk_version[@]} | ||
do | ||
for v in ${gestalt_versions[@]} | ||
do | ||
./gradlew jmh -DgestaltVersion=$v -DjdkVersion=$jdk | ||
done | ||
done |
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
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
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