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 2f604ff commit 90eb3abCopy full SHA for 90eb3ab
packaging/post_build_script.sh
@@ -11,7 +11,11 @@ WHEEL_NAME=$(ls dist/)
11
12
pushd dist
13
# Prepare manywheel
14
-auditwheel repair --plat manylinux2014_x86_64 -w . \
+manylinux_plat=manylinux2014_x86_64
15
+if [[ "$CU_VERSION" == "xpu" ]]; then
16
+ manylinux_plat=manylinux_2_28_x86_64
17
+fi
18
+auditwheel repair --plat "$manylinux_plat" -w . \
19
--exclude libtorch.so \
20
--exclude libtorch_python.so \
21
--exclude libtorch_cuda.so \
0 commit comments