christopher commited on
Commit
8357dbc
Β·
1 Parent(s): 6238472

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -38,12 +38,9 @@ if st.button("πŸ”Ž Search for Tensor Ops!"):
38
  'require_one_input_used': not settings_kwargs["require_all_inputs_used"],
39
  })
40
  with st.spinner("Searching for solution..."):
41
- with io.StringIO() as buf, redirect_stdout(buf):
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.benchmark))
46
  for solution in results.solutions:
47
  st.code(solution.expression, language='python')
48
- st.write(results.total_time)
49
- st.code(results.statistics)
 
38
  'require_one_input_used': not settings_kwargs["require_all_inputs_used"],
39
  })
40
  with st.spinner("Searching for solution..."):
41
+ results = colab_interface.run_value_search_from_colab(i, o, c, description, settings)
42
+ num_solutions = len(results.solutions)
43
+ st.write(f"Found {num_solutions} {"solutions" if num_solutions > 1 else "solution"} in {results.total_time} seconds")
 
 
44
  for solution in results.solutions:
45
  st.code(solution.expression, language='python')
46
+ st.write(dir(results))