OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <title>Results of Cluster Telemetry Tryserver Run</title> | 3 <title>Results of Cluster Telemetry Tryserver Run</title> |
4 {% include "column_threshold_css.html" %} | 4 {% include "column_threshold_css.html" %} |
5 </head> | 5 </head> |
6 | 6 |
7 <body> | 7 <body> |
8 <h2>Results of Cluster Telemetry Tryserver Run</h2> | 8 <h2>Results of Cluster Telemetry Tryserver Run</h2> |
9 Run requester: {{ requester_email }} | 9 Run requester: {{ requester_email }} |
10 <br/> | 10 <br/> |
11 Run description: {{ description }} | 11 Run description: {{ description }} |
12 <br/> | 12 <br/> |
13 This report was created on {{ html_report_date }} | 13 This report was created on {{ html_report_date }} |
14 <br/> | 14 <br/> |
15 <br/> | 15 <br/> |
16 The run was done on {{ target_platform }} slaves using the {{ pageset_type }
} page set | 16 The run was done on {{ target_platform }} slaves using the {{ pageset_type }
} page set |
17 <br/> | 17 <br/> |
18 The run was done using Chromium commit hash <a href='https://chromium.google
source.com/chromium/src/+/{{ chromium_hash }}'>{{ chromium_hash|slice:":7" }}</a
> and Skia commit hash <a href='https://skia.googlesource.com/skia/+/{{ skia_has
h }}'>{{ skia_hash|slice:":7" }}</a> | 18 The run was done using Chromium commit hash <a href='https://chromium.google
source.com/chromium/src/+/{{ chromium_hash }}'>{{ chromium_hash|slice:":7" }}</a
> and Skia commit hash <a href='https://skia.googlesource.com/skia/+/{{ skia_has
h }}'>{{ skia_hash|slice:":7" }}</a> |
19 <br/> | 19 <br/> |
20 The specified patch(es) are: <a href='{{ chromium_patch_link }}'>Chromium</a
>/<a href='{{ skia_patch_link }}'>Skia</a> (if no patch is specified the page wi
ll be empty) | 20 The specified patch(es) are: <a href='{{ chromium_patch_link }}'>Chromium</a
>/<a href='{{ skia_patch_link }}'>Skia</a>/<a href='{{ benchmark_patch_link }}'>
Telemetry</a> (if no patch is specified the page will be empty) |
21 <br/> | 21 <br/> |
22 Browser arguments for the nopatch run: "{{ browser_args_nopatch }}" | 22 Browser arguments for the nopatch run: "{{ browser_args_nopatch }}" |
23 <br/> | 23 <br/> |
24 Browser arguments for the withpatch run: "{{ browser_args_withpatch }}" | 24 Browser arguments for the withpatch run: "{{ browser_args_withpatch }}" |
25 <br/> | 25 <br/> |
26 <br/> | 26 <br/> |
27 The raw CSVs used to create the below tables are here: <a href='{{ raw_csv_n
opatch }}'>nopatch</a>/<a href='{{ raw_csv_withpatch }}'>withpatch</a> | 27 The raw CSVs used to create the below tables are here: <a href='{{ raw_csv_n
opatch }}'>nopatch</a>/<a href='{{ raw_csv_withpatch }}'>withpatch</a> |
28 <br/> | 28 <br/> |
29 Read <a href="https://docs.google.com/a/chromium.org/document/d/1GhqosQcwsy6
F-eBAmFn_ITDF7_Iv_rY9FhCKwAnk9qQ/edit?pli=1#heading=h.lgvqzgu7bc4d">this</a> for
an explanation of CT's accuracy of results. | 29 Read <a href="https://docs.google.com/a/chromium.org/document/d/1GhqosQcwsy6
F-eBAmFn_ITDF7_Iv_rY9FhCKwAnk9qQ/edit?pli=1#heading=h.lgvqzgu7bc4d">this</a> for
an explanation of CT's accuracy of results. |
30 <br/> | 30 <br/> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 <td {% if fieldname_values.perc_diff <= 0 %}class="belowthreshold"{% e
lse %}class="abovethreshold"{% endif %} >{{ fieldname_values.perc_change|floatfo
rmat:"-3" }}%</td> | 70 <td {% if fieldname_values.perc_diff <= 0 %}class="belowthreshold"{% e
lse %}class="abovethreshold"{% endif %} >{{ fieldname_values.perc_change|floatfo
rmat:"-3" }}%</td> |
71 <td {% if fieldname_values.perc_diff <= 0 %}class="belowthreshold"{% e
lse %}class="abovethreshold"{% endif %} >{{ fieldname_values.perc_diff|floatform
at:"-3" }}%</td> | 71 <td {% if fieldname_values.perc_diff <= 0 %}class="belowthreshold"{% e
lse %}class="abovethreshold"{% endif %} >{{ fieldname_values.perc_diff|floatform
at:"-3" }}%</td> |
72 </tr> | 72 </tr> |
73 {% endfor %} | 73 {% endfor %} |
74 </table> | 74 </table> |
75 {% else %} | 75 {% else %} |
76 <h4>No results. It is very likely something went wrong with this run. Plea
se contact rmistry@.</h4> | 76 <h4>No results. It is very likely something went wrong with this run. Plea
se contact rmistry@.</h4> |
77 {% endif %} | 77 {% endif %} |
78 </body> | 78 </body> |
79 </html> | 79 </html> |
OLD | NEW |