We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6b99c3 commit 2da8129Copy full SHA for 2da8129
1 file changed
.github/workflows/build-vllm-rocm.yml
@@ -162,13 +162,8 @@ jobs:
162
rm -rf lib/python3.12/turtledemo lib/python3.12/ensurepip 2>/dev/null || true
163
rm -rf include/ 2>/dev/null || true
164
165
- # Strip debug symbols (skip ROCm SDK libs — strip breaks their page alignment)
166
- echo "Stripping debug symbols..."
167
- find . -name '*.so' -o -name '*.so.*' | \
168
- grep -v '_rocm_sdk' | \
169
- while read -r f; do
170
- [ -f "$f" ] && [ ! -L "$f" ] && strip --strip-debug "$f" 2>/dev/null || true
171
- done
+ # NOTE: Do NOT strip .so files — AMD ROCm wheels use special ELF
+ # alignment that strip corrupts, and numpy/scipy also break.
172
173
echo "=== Size after cleanup ==="
174
du -sh .
0 commit comments