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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -40,7 +40,8 @@ if st.button("πŸ”Ž Search for Tensor Ops!"):
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))
 
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
+ solution_solutions = " solutions" if num_solutions > 1 else " solution"
44
+ st.write(f"Found {num_solutions}{solution_solutions} in {results.total_time} seconds")
45
  for solution in results.solutions:
46
  st.code(solution.expression, language='python')
47
  st.write(dir(results))