hana/benchmark/find_if/compile.erb.json
Louis Dionne 391543ac94 [benchmark] Disable find_if benchmarks for set and map
It makes very little sense to compare find_if for set and map with
find_if for linear data structures, since that is not the intended
use case for set and map. Until we have a better comparison of
associative data structures ready, I do not want to present this
data as it could be misleading.
2016-02-15 14:59:30 -05:00

54 lines
1.3 KiB
JSON

<%
hana = (0...50).step(5).to_a + (50..200).step(25).to_a
fusion = (0...50).step(5).to_a
mpl = hana
meta = hana
%>
{
"title": {
"text": "Compile-time behavior of find_if"
},
"series": [
{
"name": "hana::tuple",
"data": <%= time_compilation('compile.hana.tuple.erb.cpp', hana) %>
}
<% if false %>
, {
"name": "hana::set",
"data": <%= time_compilation('compile.hana.set.erb.cpp', hana) %>
}, {
"name": "hana::map",
"data": <%= time_compilation('compile.hana.map.erb.cpp', hana) %>
}
<% end %>
, {
"name": "std::integer_sequence",
"data": <%= time_compilation('compile.std.integer_sequence.erb.cpp', hana) %>
}
<% 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 %>
]
}