nomove.erb.json 469 B

1234567891011121314151617181920212223
  1. <%
  2. exec = (0..100).step(10).to_a
  3. fusion = (0..50).step(10).to_a
  4. %>
  5. {
  6. "title": {
  7. "text": "Runtime performance of reverse on a normal container"
  8. },
  9. "series": [
  10. {
  11. "name": "hana::tuple",
  12. "data": <%= time_execution('nomove.hana.tuple.erb.cpp', exec) %>
  13. }
  14. <% if cmake_bool("@Boost_FOUND@") %>
  15. , {
  16. "name": "fusion::vector",
  17. "data": <%= time_execution('nomove.fusion.vector.erb.cpp', fusion) %>
  18. }
  19. <% end %>
  20. ]
  21. }