Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Build/CI] Minor changes to fix internal CI process. #235

Merged
merged 8 commits into from
Oct 22, 2024
Merged
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
4 changes: 2 additions & 2 deletions .buildkite/run-amd-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ cleanup_docker

echo "--- Resetting GPUs"

echo "reset" > ${BUILDKITE_META_DATA_RESET_TARGET}
echo "reset" > ${BUILDKITE_AGENT_META_DATA_RESET_TARGET}

while true; do
sleep 3
if grep -q clean ${BUILDKITE_META_DATA_RESET_TARGET}; then
if grep -q clean ${BUILDKITE_AGENT_META_DATA_RESET_TARGET}; then
echo "GPUs state is \"clean\""
break
fi
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile.rocm
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ RUN --mount=type=bind,from=export_pytorch,src=/,target=/install \
if ls /install/*.whl; then \
pip install /install/*.whl; \
fi

# Build vLLM
RUN cd vllm \
&& python3 -m pip install -r requirements-rocm.txt \
Expand Down Expand Up @@ -246,7 +247,7 @@ RUN --mount=type=bind,from=export_pytorch,src=/,target=/install \
&& pip install /install/*.whl; \
fi

RUN python3 -m pip install --upgrade numba scipy huggingface-hub[cli]
RUN python3 -m pip install --upgrade huggingface-hub[cli]

RUN git clone -b nvtx_enabled https://github.com/ROCm/rocmProfileData.git \
&& cd rocmProfileData/rpd_tracer \
Expand Down
3 changes: 2 additions & 1 deletion requirements-rocm.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
-r requirements-common.txt

# Dependencies for AMD GPUs
numpy==1.26.4
awscli
boto3
botocore
ray >= 2.10.0
peft
pytest-asyncio
tensorizer>=2.9.0
setuptools-scm>=8
setuptools-scm>=8
Loading