File tree 9 files changed +341
-308
lines changed
9 files changed +341
-308
lines changed Original file line number Diff line number Diff line change 1
- {% extends "layout.html" %}
2
- {% block head %}
3
- < link rel ="stylesheet " href ="../../node_modules/uplot/dist/uPlot.min.css ">
1
+ {% extends "layout.html" %} {% block head %}
2
+ < link rel ="stylesheet " href ="../../node_modules/uplot/dist/uPlot.min.css " />
4
3
< style >
5
- .uplot {
6
- display : inline-block;
7
- vertical-align : top;
8
- width : min-content;
9
- }
4
+ .uplot {
5
+ display : inline-block;
6
+ vertical-align : top;
7
+ width : min-content;
8
+ }
10
9
11
- .u-over {
12
- box-shadow : 0px 0px 0px 0.5px # ccc ;
13
- }
10
+ .u-over {
11
+ box-shadow : 0px 0px 0px 0.5px # ccc ;
12
+ }
14
13
15
- .u-legend {
16
- text-align : left;
17
- padding-left : 50px ;
18
- }
14
+ .u-legend {
15
+ text-align : left;
16
+ padding-left : 50px ;
17
+ }
19
18
20
- .u-inline tr {
21
- margin-right : 8px ;
22
- }
19
+ .u-inline tr {
20
+ margin-right : 8px ;
21
+ }
23
22
24
- .u-label {
25
- font-size : 12px ;
26
- }
23
+ .u-label {
24
+ font-size : 12px ;
25
+ }
27
26
28
- .u-tooltip {
29
- font-size : 10pt ;
30
- position : absolute;
31
- background : # fff ;
32
- display : none;
33
- border : 2px solid black;
34
- padding : 4px ;
35
- pointer-events : none;
36
- z-index : 100 ;
37
- white-space : pre;
38
- font-family : monospace;
39
- }
27
+ .u-tooltip {
28
+ font-size : 10pt ;
29
+ position : absolute;
30
+ background : # fff ;
31
+ display : none;
32
+ border : 2px solid black;
33
+ padding : 4px ;
34
+ pointer-events : none;
35
+ z-index : 100 ;
36
+ white-space : pre;
37
+ font-family : monospace;
38
+ }
40
39
41
- body {
42
- padding : 1em ;
43
- margin : 0 ;
44
- }
40
+ body {
41
+ padding : 1em ;
42
+ margin : 0 ;
43
+ }
45
44
</ style >
46
- {% endblock %}
47
- {% block content %}
45
+ {% endblock %} {% block content %}
48
46
< div id ="app "> </ div >
49
- {% endblock %}
50
- {% block script %}
47
+ {% endblock %} {% block script %}
51
48
< script type ="module " src ="../pages/bootstrap.ts "> </ script >
52
49
{% endblock %}
Original file line number Diff line number Diff line change 1
- {% extends "layout.html" %}
2
- {% block head %}
3
- < link rel ="stylesheet " href ="../../node_modules/uplot/dist/uPlot.min.css ">
1
+ {% extends "layout.html" %} {% block head %}
2
+ < link rel ="stylesheet " href ="../../node_modules/uplot/dist/uPlot.min.css " />
4
3
5
4
< style >
6
- body {
7
- max-width : 1100px ;
8
- margin : 2% auto;
9
- }
5
+ body {
6
+ max-width : 1100px ;
7
+ margin : 2% auto;
8
+ }
10
9
11
- # app {
12
- margin : 0 2% ;
13
- }
10
+ # app {
11
+ margin : 0 2% ;
12
+ }
14
13
15
- ul li {
16
- margin : 0 ;
17
- }
14
+ ul li {
15
+ margin : 0 ;
16
+ }
18
17
19
- ul li input {
20
- vertical-align : middle;
21
- margin : 0 2px ;
22
- }
18
+ ul li input {
19
+ vertical-align : middle;
20
+ margin : 0 2px ;
21
+ }
23
22
24
- .section {
25
- display : flex;
26
- margin : 10px 0 ;
27
- }
23
+ .section {
24
+ display : flex;
25
+ margin : 10px 0 ;
26
+ }
28
27
29
- .section-heading {
30
- font-size : 16px ;
31
- }
28
+ .section-heading {
29
+ font-size : 16px ;
30
+ }
32
31
33
- .collapsible-section {
34
- border : 1px black;
35
- border-style : dotted;
36
- margin : 12px 0px ;
37
- border-radius : 10px ;
38
- }
32
+ .collapsible-section {
33
+ border : 1px black;
34
+ border-style : dotted;
35
+ margin : 12px 0px ;
36
+ border-radius : 10px ;
37
+ }
39
38
40
- input {
41
- border-radius : 5px ;
42
- font-size : 12px ;
43
- height : 100% ;
44
- }
39
+ input {
40
+ border-radius : 5px ;
41
+ font-size : 12px ;
42
+ height : 100% ;
43
+ }
45
44
46
- input [type = "checkbox" ] {
47
- height : auto;
48
- }
45
+ input [type = "checkbox" ] {
46
+ height : auto;
47
+ }
49
48
50
- .category-title {
51
- font-weight : bold;
52
- font-size : 1.2em ;
53
- margin : 10px ;
54
- text-align : center;
55
- }
49
+ .category-title {
50
+ font-weight : bold;
51
+ font-size : 1.2em ;
52
+ margin : 10px ;
53
+ text-align : center;
54
+ }
56
55
57
- .positive {
58
- color : red;
59
- }
56
+ .positive {
57
+ color : red;
58
+ }
60
59
61
- .slightly-positive {
62
- color : # ea7272 ;
63
- }
60
+ .slightly-positive {
61
+ color : # ea7272 ;
62
+ }
64
63
65
- .negative {
66
- color : green;
67
- }
64
+ .negative {
65
+ color : green;
66
+ }
68
67
69
- .slightly-negative {
70
- color : # 74b374
71
- }
68
+ .slightly-negative {
69
+ color : # 74b374;
70
+ }
72
71
</ style >
73
72
74
73
<!-- <link rel="stylesheet" type="text/css" href="scripts/compare.css"> -->
75
- {% endblock %}
76
- {% block content %}
77
- {% raw %}
74
+ {% endblock %} {% block content %} {% raw %}
78
75
< div id ="app "> </ div >
79
- {% endraw %}
80
- {% endblock %}
81
- {% block script %}
76
+ {% endraw %} {% endblock %} {% block script %}
82
77
< script type ="module " src ="../pages/compare.ts "> </ script >
83
78
{% endblock %}
Original file line number Diff line number Diff line change 1
- {% extends "layout.html" %}
2
- {% block content %}
3
- < details style ="margin-top: 10px; ">
4
- < summary > What data is in the dashboard?</ summary >
1
+ {% extends "layout.html" %} {% block content %}
2
+ < details style ="margin-top: 10px ">
3
+ < summary > What data is in the dashboard?</ summary >
5
4
6
- The dashboard shows performance results for all stable Rust releases going back to
7
- < code > 1.28.0</ code > , along with the latest < code > beta</ code > release. The displayed
8
- duration is an arithmetic mean amongst all
9
- < a href ="https://github.com/rust-lang/rustc-perf/tree/master/collector/compile-benchmarks#stable "> stable</ a >
10
- benchmarks.
5
+ The dashboard shows performance results for all stable Rust releases going
6
+ back to
7
+ < code > 1.28.0</ code > , along with the latest < code > beta</ code > release. The
8
+ displayed duration is an arithmetic mean amongst all
9
+ < a
10
+ href ="https://github.com/rust-lang/rustc-perf/tree/master/collector/compile-benchmarks#stable "
11
+ > stable</ a
12
+ >
13
+ benchmarks.
11
14
</ details >
12
15
13
16
< div id ="check-average-times "> </ div >
14
17
< div id ="debug-average-times "> </ div >
15
18
< div id ="opt-average-times "> </ div >
16
19
< div id ="doc-average-times "> </ div >
17
20
< div id ="as-of "> </ div >
18
- {% endblock %}
19
- {% block script %}
21
+ {% endblock %} {% block script %}
20
22
< script type ="module " src ="../pages/dashboard.ts "> </ script >
21
23
{% endblock %}
You can’t perform that action at this time.
0 commit comments