Commit d6bbb20e authored by eyaich's avatar eyaich Committed by Commit bot

Updating swarming dimensions to add the Chrome-perf pool.

BUG=chromium:633253

Review-Url: https://codereview.chromium.org/2344163002
Cr-Commit-Position: refs/heads/master@{#419160}
parent d5278390
...@@ -21,11 +21,13 @@ ...@@ -21,11 +21,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -49,11 +51,13 @@ ...@@ -49,11 +51,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -76,11 +80,13 @@ ...@@ -76,11 +80,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -104,11 +110,13 @@ ...@@ -104,11 +110,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -131,11 +139,13 @@ ...@@ -131,11 +139,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -159,11 +169,13 @@ ...@@ -159,11 +169,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -186,11 +198,13 @@ ...@@ -186,11 +198,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -214,11 +228,13 @@ ...@@ -214,11 +228,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -241,11 +257,13 @@ ...@@ -241,11 +257,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
...@@ -269,11 +287,13 @@ ...@@ -269,11 +287,13 @@
"dimension_sets": [ "dimension_sets": [
{ {
"gpu": "8086:22b1", "gpu": "8086:22b1",
"os": "Windows-10-10240" "os": "Windows-10-10240",
"pool": "Chrome-perf"
}, },
{ {
"gpu": "1002:9830", "gpu": "1002:9830",
"os": "Windows-10-10586" "os": "Windows-10-10586",
"pool": "Chrome-perf"
} }
] ]
} }
......
...@@ -198,7 +198,8 @@ def add_tester(waterfall, name, perf_id, platform, target_bits=64, ...@@ -198,7 +198,8 @@ def add_tester(waterfall, name, perf_id, platform, target_bits=64,
for dimension in swarming: for dimension in swarming:
waterfall['testers'][name]['swarming_dimensions'].append({ waterfall['testers'][name]['swarming_dimensions'].append({
'gpu': dimension['gpu'], 'gpu': dimension['gpu'],
'os': dimension['os'] 'os': dimension['os'],
'pool': 'Chrome-perf',
}) })
waterfall['testers'][name]['swarming'] = True waterfall['testers'][name]['swarming'] = True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment