summaryrefslogtreecommitdiff
path: root/perf.groovy
diff options
context:
space:
mode:
authorJosé Rivero <jorive@microsoft.com>2018-03-22 11:37:16 -0700
committerGitHub <noreply@github.com>2018-03-22 11:37:16 -0700
commit2e5f43401b458315dc33c137f0ee0c5a02d810c2 (patch)
tree492e5f06c57cae514e3b7afa4600f76daeea78c2 /perf.groovy
parent58a8a17e006fa87f6a79089e81cd528231b3a90f (diff)
downloadcoreclr-2e5f43401b458315dc33c137f0ee0c5a02d810c2.tar.gz
coreclr-2e5f43401b458315dc33c137f0ee0c5a02d810c2.tar.bz2
coreclr-2e5f43401b458315dc33c137f0ee0c5a02d810c2.zip
Updating scenarios and disabling min_opt and tiered permutations. (#17074)
Diffstat (limited to 'perf.groovy')
-rw-r--r--perf.groovy10
1 files changed, 5 insertions, 5 deletions
diff --git a/perf.groovy b/perf.groovy
index 10903c2b58..f5ab9c212d 100644
--- a/perf.groovy
+++ b/perf.groovy
@@ -30,7 +30,7 @@ def static getOSGroup(def os) {
['Windows_NT'].each { os ->
['x64', 'x86'].each { arch ->
['ryujit'].each { jit ->
- ['full_opt', 'min_opt'].each { opt_level ->
+ ['full_opt'].each { opt_level ->
def architecture = arch
def jobName = "perf_perflab_${os}_${arch}_${opt_level}_${jit}"
@@ -154,7 +154,7 @@ def static getOSGroup(def os) {
['x64', 'x86'].each { arch ->
['ryujit'].each { jit ->
[true, false].each { pgo_optimized ->
- ['full_opt', 'min_opt'].each { opt_level ->
+ ['full_opt'].each { opt_level ->
def architecture = arch
pgo_build = ""
@@ -411,8 +411,8 @@ def static getFullThroughputJobName(def project, def os, def isPR) {
}
// Actual perf testing on the following OSes
- def throughputOSList = ['Ubuntu14.04']
- def throughputOptLevelList = ['full_opt', 'min_opt']
+ def throughputOSList = ['Ubuntu16.04']
+ def throughputOptLevelList = ['full_opt']
def throughputOSOptLevelList = []
@@ -537,7 +537,7 @@ parallel(
['Windows_NT'].each { os ->
['x64', 'x86'].each { arch ->
['ryujit'].each { jit ->
- ['full_opt', 'min_opt', 'tiered'].each { opt_level ->
+ ['full_opt'].each { opt_level ->
def architecture = arch
def newJob = job(Utilities.getFullJobName(project, "perf_scenarios_${os}_${arch}_${opt_level}_${jit}", isPR)) {