mirror of
https://github.com/ml-explore/mlx.git
synced 2025-06-24 01:17:26 +08:00
18 lines
504 B
Bash
18 lines
504 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
auditwheel repair dist/* \
|
||
|
--plat manylinux_2_35_x86_64 \
|
||
|
--exclude libcublas* \
|
||
|
--exclude libnvrtc*
|
||
|
|
||
|
cd wheelhouse
|
||
|
repaired_wheel=$(find . -name "*.whl" -print -quit)
|
||
|
unzip -q "${repaired_wheel}"
|
||
|
core_so=$(find mlx -name "core*.so" -print -quit)
|
||
|
rpath=$(patchelf --print-rpath "${core_so}")
|
||
|
rpath=$rpath:\$ORIGIN/../nvidia/cublas/lib:\$ORIGIN/../nvidia/cuda_nvrtc/lib
|
||
|
patchelf --force-rpath --set-rpath "$rpath" "$core_so"
|
||
|
|
||
|
# Re-zip the repaired wheel
|
||
|
zip -r -q "${repaired_wheel}" .
|