Spaces:
Running
Running
Commit
Β·
8079e07
1
Parent(s):
f6e6d9a
Update app.py
Browse files
app.py
CHANGED
@@ -42,5 +42,10 @@ 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 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
st.write(results.count())
|
47 |
+
st.write(results.index())
|
48 |
+
for solution in results.solution:
|
49 |
+
st.code(solution, language='python')
|
50 |
+
st.write(results.total_time)
|
51 |
+
st.code(results.statistics)
|