50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
<%
|
|
hana = (0...50).step(5).to_a + (50..400).step(25).to_a
|
|
fusion = (0..50).step(5)
|
|
mpl = hana
|
|
meta = hana
|
|
mpl11 = hana
|
|
%>
|
|
|
|
{
|
|
"title": {
|
|
"text": "Compile-time behavior of transform"
|
|
},
|
|
"series": [
|
|
{
|
|
"name": "hana::tuple",
|
|
"data": <%= time_compilation('compile.hana.tuple.erb.cpp', hana) %>
|
|
}, {
|
|
"name": "hana::types",
|
|
"data": <%= time_compilation('compile.hana.types.erb.cpp', hana) %>
|
|
}
|
|
|
|
<% if cmake_bool("@Boost_FOUND@") %>
|
|
, {
|
|
"name": "mpl::vector",
|
|
"data": <%= time_compilation('compile.mpl.vector.erb.cpp', mpl) %>
|
|
}, {
|
|
"name": "fusion::vector",
|
|
"data": <%= time_compilation('compile.fusion.vector.erb.cpp', fusion) %>
|
|
}, {
|
|
"name": "fusion::list",
|
|
"data": <%= time_compilation('compile.fusion.list.erb.cpp', fusion) %>
|
|
}
|
|
<% end %>
|
|
|
|
<% if cmake_bool("@Meta_FOUND@") %>
|
|
, {
|
|
"name": "meta::list",
|
|
"data": <%= time_compilation('compile.meta.list.erb.cpp', meta) %>
|
|
}
|
|
<% end %>
|
|
|
|
<% if cmake_bool("@MPL11_FOUND@") %>
|
|
, {
|
|
"name": "mpl11::list",
|
|
"data": <%= time_compilation('compile.mpl11.list.erb.cpp', mpl11) %>
|
|
}
|
|
<% end %>
|
|
]
|
|
}
|