From 05bdf4eaf3bd8c577d09a6556acc3688094d0f6b Mon Sep 17 00:00:00 2001 From: TJian Date: Thu, 14 Dec 2023 16:45:58 +0800 Subject: [PATCH] Fix Dockerfile.rocm (#2101) Co-authored-by: miloice --- Dockerfile.rocm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.rocm b/Dockerfile.rocm index e5c4e051..36a7ee37 100644 --- a/Dockerfile.rocm +++ b/Dockerfile.rocm @@ -52,7 +52,7 @@ RUN pip install xformers==0.0.23 --no-deps RUN cd /app \ && cd vllm \ && pip install -U -r requirements-rocm.txt \ - && bash patch_xformers-0.0.23.rocm.sh \ + && bash patch_xformers.rocm.sh \ && python3 setup.py install \ && cd ..