hana/benchmark/make/compile.erb.json
Louis Dionne a5923b4845 Remove support for Clang 3.5, 3.6, 3.7 and 3.8, and Xcode 8
Those are old compilers and removing support allows removing a couple
of workarounds. It also reduces the CI burden and will allow us to test
more recent and more relevant compilers.
2019-07-30 14:48:41 -04:00

59 lines
1.5 KiB
JSON

<%
hana = (0...50).step(5).to_a + (50..400).step(25).to_a
fusion = (0...50).step(5).to_a + [50, 75, 100]
mpl = hana
meta = (0...50).step(5).to_a + (50..200).step(25).to_a
mpl11 = hana
std = (0...50).step(5).to_a + (50..100).step(25).to_a
%>
{
"title": {
"text": "Compile-time behavior of creating a sequence"
},
"series": [
{
"name": "hana::tuple",
"data": <%= time_compilation('compile.hana.tuple.erb.cpp', hana) %>
}, {
"name": "hana::basic_tuple",
"data": <%= time_compilation('compile.hana.basic_tuple.erb.cpp', hana) %>
}, {
"name": "std::array",
"data": <%= time_compilation('compile.std.array.erb.cpp', hana) %>
}
, {
"name": "std::tuple",
"data": <%= time_compilation('compile.std.tuple.erb.cpp', std) %>
}
<% if cmake_bool("@Boost_FOUND@") %>
, {
"name": "fusion::vector",
"data": <%= time_compilation('compile.fusion.vector.erb.cpp', fusion) %>
}, {
"name": "fusion::list",
"data": <%= time_compilation('compile.fusion.list.erb.cpp', fusion) %>
}, {
"name": "mpl::vector",
"data": <%= time_compilation('compile.mpl.vector.erb.cpp', mpl) %>
}
<% 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 %>
]
}