Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile.konflux.cpu
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
freetype lcms2 libwebp tcl tk utf8proc \
harfbuzz fribidi libxcb \
python${PYTHON_VERSION}-devel python${PYTHON_VERSION}-pip \
&& microdnf clean all; \
&& microdnf update -y glib2 && microdnf clean all; \
python${PYTHON_VERSION} -m venv ${VIRTUAL_ENV}; \
python -m pip install -U pip uv --no-cache; \
make -C /numactl install; \
Expand Down
5 changes: 5 additions & 0 deletions build_vllm_ppc64le.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ curl -L https://github.com/OpenMathLib/OpenBLAS/releases/download/v${OPENBLAS_VE
# rename directory for mounting (without knowing version numbers) in multistage builds
mv OpenBLAS-${OPENBLAS_VERSION}/ OpenBLAS/
cd OpenBLAS/

# Apply the patch below to add Power11 support if OpenBLAS being built here is less than or equal to 0.3.30.
curl -Lo power11.patch https://github.com/OpenMathLib/OpenBLAS/pull/5354.patch
git apply power11.patch

make -j${MAX_JOBS} TARGET=POWER9 BINARY=64 USE_OPENMP=1 USE_THREAD=1 NUM_THREADS=120 DYNAMIC_ARCH=1 INTERFACE64=0 && make install

# set path for openblas
Expand Down