"client_example/19_pool/max_pool2d_fwd.cpp" did not exist on "d821d1e54f6ce8131070a1253dfc4dd6662d3d85"
Commit ef7588b6 authored by lintangsutawika's avatar lintangsutawika
Browse files

add column as option

parent 1f6d3cd6
......@@ -259,7 +259,7 @@ class Grouper:
return res
def make_table(result_dict):
def make_table(result_dict, column="results"):
"""Generate table of results."""
from pytablewriter import MarkdownTableWriter, LatexTableWriter
......@@ -278,7 +278,7 @@ def make_table(result_dict):
values = []
for k, dic in result_dict["results"].items():
for k, dic in result_dict[column].items():
version = result_dict["versions"][k]
for (mf), v in dic.items():
m, _, f = mf.partition(",")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment