summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/benchmark/fold_left/bloat.erb.json
blob: b3bd9892ec53c5c168327676c264b4d3555e69cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%
  exec = (0..100).step(10).to_a
  fusion = (0..50).step(10).to_a
%>

{
  "title": {
    "text": "Executable size for fold_left"
  },
  "yAxis": {
    "title": {
      "text": "Executable size (kb)"
    },
    "floor": 0
  },
  "tooltip": {
    "valueSuffix": "kb"
  },
  "series": [
    {
      "name": "hana::tuple",
      "data": <%= measure(:bloat, 'execute.hana.tuple.erb.cpp', exec) %>
    }, {
      "name": "std::vector",
      "data": <%= measure(:bloat, 'execute.std.vector.erb.cpp', exec) %>
    }, {
      "name": "std::array",
      "data": <%= measure(:bloat, 'execute.std.array.erb.cpp', exec) %>
    }

    <% if cmake_bool("@Boost_FOUND@") %>
    , {
      "name": "fusion::vector",
      "data": <%= measure(:bloat, 'execute.fusion.vector.erb.cpp', fusion) %>
    }
    <% end %>
  ]
}