benchmark.including.compile.json 779 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "chart": {
  3. "type": "column"
  4. },
  5. "legend": {
  6. "enabled": false
  7. },
  8. "xAxis": {
  9. "type": "category"
  10. },
  11. "title": {
  12. "text": "Including various metaprogramming libraries"
  13. },
  14. "plotOptions": {
  15. "series": {
  16. "borderWidth": 0,
  17. "dataLabels": {
  18. "enabled": true,
  19. "format": "{point.y:.5f}s"
  20. }
  21. }
  22. },
  23. "series": [{
  24. "name": "Include time",
  25. "colorByPoint": true,
  26. "data": [
  27. {
  28. "name": "Baseline (no includes)",
  29. "y": 0.0182668258
  30. }, {
  31. "name": "Boost.Hana",
  32. "y": 0.547869966
  33. }
  34. , {
  35. "name": "Boost.MPL",
  36. "y": 2.1816139466
  37. }, {
  38. "name": "Boost.Fusion",
  39. "y": 2.2934158984
  40. }
  41. ]
  42. }]
  43. }