compile.erb.json 822 B

12345678910111213141516171819202122232425262728293031
  1. <%
  2. hana = [0, 1, 2, 5, 10, 20, 50, 100]
  3. %>
  4. {
  5. "title": {
  6. "text": "Compile-time behavior of sort"
  7. },
  8. "series": [
  9. {
  10. "name": "hana::tuple::sorted",
  11. "data": <%= time_compilation('compile.hana.tuple.sorted.erb.cpp', hana) %>
  12. },
  13. {
  14. "name": "hana::tuple::reversed",
  15. "data": <%= time_compilation('compile.hana.tuple.reversed.erb.cpp', hana) %>
  16. },
  17. {
  18. "name": "hana::tuple::rand",
  19. "data": <%= time_compilation('compile.hana.tuple.rand.erb.cpp', hana) %>
  20. },
  21. {
  22. "name": "hana::tuple::sorted_but_first",
  23. "data": <%= time_compilation('compile.hana.tuple.sorted_but_first.erb.cpp', hana) %>
  24. },
  25. {
  26. "name": "hana::tuple::sorted_but_last",
  27. "data": <%= time_compilation('compile.hana.tuple.sorted_but_last.erb.cpp', hana) %>
  28. }
  29. ]
  30. }