File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -117,8 +117,6 @@ jobs:
117
117
steps :
118
118
- name : Checkout
119
119
uses : actions/checkout@v2
120
- with :
121
- sparse-checkout : examples/mlir_python_extras.ipynb
122
120
123
121
- name : Setup Python
124
122
uses : actions/setup-python@v4
@@ -129,11 +127,16 @@ jobs:
129
127
- name : Run notebook
130
128
shell : bash
131
129
run : |
130
+
132
131
pip install jupyter
132
+ pip install -q mlir-python-bindings -f https://makslevental.github.io/wheels
133
+ pip install -q .
134
+
133
135
sed -i.bak 's/OUTPUT_TIMEOUT = 10/OUTPUT_TIMEOUT = 100/g' \
134
136
$(python -c 'import site; print(site.getsitepackages()[0])')/jupyter_client/runapp.py
135
- BRANCH=${{ github.ref_name }} jupyter run examples/mlir_python_extras.ipynb
136
- BRANCH=${{ github.ref_name }} jupyter run examples/vectorization_e2e.ipynb
137
+
138
+ jupyter execute examples/mlir_python_extras.ipynb
139
+ jupyter execute examples/vectorization_e2e.ipynb
137
140
138
141
mlir-bindings-aarch64 :
139
142
You can’t perform that action at this time.
0 commit comments