1<% 2 exec = (0..100).step(10).to_a 3 fusion = (0..50).step(10).to_a 4%> 5 6{ 7 "title": { 8 "text": "Runtime behavior of fold_left" 9 }, 10 "series": [ 11 { 12 "name": "hana::tuple", 13 "data": <%= time_execution('execute.hana.tuple.erb.cpp', exec) %> 14 }, { 15 "name": "std::vector", 16 "data": <%= time_execution('execute.std.vector.erb.cpp', exec) %> 17 }, { 18 "name": "std::array", 19 "data": <%= time_execution('execute.std.array.erb.cpp', exec) %> 20 } 21 22 <% if cmake_bool("@Boost_FOUND@") %> 23 , { 24 "name": "fusion::vector", 25 "data": <%= time_execution('execute.fusion.vector.erb.cpp', fusion) %> 26 }, { 27 "name": "fusion::list", 28 "data": <%= time_execution('execute.fusion.list.erb.cpp', fusion) %> 29 } 30 <% end %> 31 ] 32}