Spaces:
Runtime error
Runtime error
christopher
commited on
Commit
β’
06ed65c
1
Parent(s):
936f5ea
Update app.py
Browse files
app.py
CHANGED
@@ -41,7 +41,6 @@ if st.button("π Search for Tensor Ops!"):
|
|
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(results.benchmark.target_program)
|
|
|
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:.2f} seconds")
|
45 |
for solution in results.solutions:
|
46 |
+
st.code(solution.expression, language='python')
|
|