christopher commited on
Commit
159f7d8
Β·
1 Parent(s): 6fa5810

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -42,4 +42,5 @@ if st.button("πŸ”Ž Search for Tensor Ops!"):
42
  results = colab_interface.run_value_search_from_colab(i, o, c, description, settings)
43
  stdout = buf.getvalue()
44
  st.code(stdout, language='bash')
45
- st.write(dir(results))
 
 
42
  results = colab_interface.run_value_search_from_colab(i, o, c, description, settings)
43
  stdout = buf.getvalue()
44
  st.code(stdout, language='bash')
45
+ for e in ["benchmark", "count", "index", "settings", "solutions", "statistics", "total_time", "value_set", "values_by_weight"]:
46
+ st.code(eval(f"t.{e}"), language='python')