compile.erb.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <%
  2. hana = (0...50).step(5).to_a + (50..200).step(25).to_a
  3. fusion = (0...50).step(5).to_a
  4. mpl = hana
  5. meta = hana
  6. %>
  7. {
  8. "title": {
  9. "text": "Compile-time behavior of find_if"
  10. },
  11. "series": [
  12. {
  13. "name": "hana::tuple",
  14. "data": <%= time_compilation('compile.hana.tuple.erb.cpp', hana) %>
  15. }
  16. <% if false %>
  17. , {
  18. "name": "hana::set",
  19. "data": <%= time_compilation('compile.hana.set.erb.cpp', hana) %>
  20. }, {
  21. "name": "hana::map",
  22. "data": <%= time_compilation('compile.hana.map.erb.cpp', hana) %>
  23. }
  24. <% end %>
  25. , {
  26. "name": "std::integer_sequence",
  27. "data": <%= time_compilation('compile.std.integer_sequence.erb.cpp', hana) %>
  28. }
  29. <% if cmake_bool("@Boost_FOUND@") %>
  30. , {
  31. "name": "fusion::vector",
  32. "data": <%= time_compilation('compile.fusion.vector.erb.cpp', fusion) %>
  33. }, {
  34. "name": "fusion::list",
  35. "data": <%= time_compilation('compile.fusion.list.erb.cpp', fusion) %>
  36. }, {
  37. "name": "mpl::vector",
  38. "data": <%= time_compilation('compile.mpl.vector.erb.cpp', mpl) %>
  39. }
  40. <% end %>
  41. <% if cmake_bool("@Meta_FOUND@") %>
  42. , {
  43. "name": "meta::list",
  44. "data": <%= time_compilation('compile.meta.list.erb.cpp', meta) %>
  45. }
  46. <% end %>
  47. ]
  48. }