We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02e211c commit fc5ddb3Copy full SHA for fc5ddb3
.github/workflows/build.yml
@@ -126,12 +126,19 @@ jobs:
126
cd ../../..
127
cp third_party/tvm/python/dist/*.whl dist/
128
129
+ - name: Create manylinux wheels (tt-forge-fe and tvm)
130
+ shell: bash
131
+ run: |
132
+ # Exclude libtorch*.so & libc10.so since they are sourced from torch in the python requirements.txt
133
+ pip install auditwheel
134
+ auditwheel repair --disable-isa-ext-check --plat manylinux_2_35_x86_64 --exclude libtorch*.so --exclude libc10.so dist/*.whl
135
+
136
- name: Upload Build
137
uses: actions/upload-artifact@v4
138
if: success() || failure()
139
with:
140
name: forge-wheel
- path: dist/*.whl
141
+ path: wheelhouse/*.whl
142
143
144
unit-test-build:
0 commit comments