]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/hana/benchmark/fold_left/bloat.erb.json
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / hana / benchmark / fold_left / bloat.erb.json
1 <%
2 exec = (0..100).step(10).to_a
3 fusion = (0..50).step(10).to_a
4 %>
5
6 {
7 "title": {
8 "text": "Executable size for fold_left"
9 },
10 "yAxis": {
11 "title": {
12 "text": "Executable size (kb)"
13 },
14 "floor": 0
15 },
16 "tooltip": {
17 "valueSuffix": "kb"
18 },
19 "series": [
20 {
21 "name": "hana::tuple",
22 "data": <%= measure(:bloat, 'execute.hana.tuple.erb.cpp', exec) %>
23 }, {
24 "name": "std::vector",
25 "data": <%= measure(:bloat, 'execute.std.vector.erb.cpp', exec) %>
26 }, {
27 "name": "std::array",
28 "data": <%= measure(:bloat, 'execute.std.array.erb.cpp', exec) %>
29 }
30
31 <% if cmake_bool("@Boost_FOUND@") %>
32 , {
33 "name": "fusion::vector",
34 "data": <%= measure(:bloat, 'execute.fusion.vector.erb.cpp', fusion) %>
35 }
36 <% end %>
37 ]
38 }