add updated makefile

This commit is contained in:
Mohit Sharma 2025-03-26 16:18:29 +00:00
parent c553a9cd77
commit 23c7d11cde

View File

@ -6,8 +6,7 @@ build-vllm-rocm:
git clone https://github.com/mht-sharma/vllm.git vllm; \ git clone https://github.com/mht-sharma/vllm.git vllm; \
fi fi
cd vllm && git fetch && git checkout $(commit_rocm) && \ cd vllm && git fetch && git checkout $(commit_rocm) && \
PYTORCH_ROCM_ARCH="gfx90a;gfx942" python setup.py build PYTORCH_ROCM_ARCH="gfx90a;gfx942" python3 setup.py bdist_wheel --dist-dir=dist
install-vllm-rocm: build-vllm-rocm install-vllm-rocm: build-vllm-rocm
cd vllm && git fetch && git checkout $(commit_rocm) && \ cd vllm && git fetch && git checkout $(commit_rocm)
PYTORCH_ROCM_ARCH="gfx90a;gfx942" pip install -e .