summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/benchmark/reverse/nomove.erb.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/hana/benchmark/reverse/nomove.erb.json')
-rw-r--r--src/boost/libs/hana/benchmark/reverse/nomove.erb.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/boost/libs/hana/benchmark/reverse/nomove.erb.json b/src/boost/libs/hana/benchmark/reverse/nomove.erb.json
new file mode 100644
index 000000000..b9d39bd85
--- /dev/null
+++ b/src/boost/libs/hana/benchmark/reverse/nomove.erb.json
@@ -0,0 +1,23 @@
+<%
+ exec = (0..100).step(10).to_a
+ fusion = (0..50).step(10).to_a
+%>
+
+{
+ "title": {
+ "text": "Runtime performance of reverse on a normal container"
+ },
+ "series": [
+ {
+ "name": "hana::tuple",
+ "data": <%= time_execution('nomove.hana.tuple.erb.cpp', exec) %>
+ }
+
+ <% if cmake_bool("@Boost_FOUND@") %>
+ , {
+ "name": "fusion::vector",
+ "data": <%= time_execution('nomove.fusion.vector.erb.cpp', fusion) %>
+ }
+ <% end %>
+ ]
+}