• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<%
2  exec = (0..100).step(10).to_a
3  fusion = (0..50).step(10).to_a
4%>
5
6{
7  "title": {
8    "text": "Runtime performance of reverse on a moved-from container"
9  },
10  "series": [
11    {
12      "name": "hana::tuple",
13      "data": <%= time_execution('move.hana.tuple.erb.cpp', exec) %>
14    }
15
16    <% if cmake_bool("@Boost_FOUND@") %>
17    , {
18      "name": "fusion::vector",
19      "data": <%= time_execution('move.fusion.vector.erb.cpp', fusion) %>
20    }
21    <% end %>
22  ]
23}
24