From 8d6a28953f409c8b23b85e96578b904adfee185b Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Thu, 25 May 2023 12:18:28 -0400 Subject: [PATCH] fix relative path in flash-attn build: --- docker/Dockerfile-base | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile-base b/docker/Dockerfile-base index 5d84a7c24..c63f5a496 100644 --- a/docker/Dockerfile-base +++ b/docker/Dockerfile-base @@ -43,11 +43,11 @@ RUN git clone https://github.com/HazyResearch/flash-attention.git && \ python3 setup.py bdist_wheel && \ cd csrc/fused_dense_lib && \ python3 setup.py bdist_wheel && \ - cd ../csrc/xentropy && \ + cd ../xentropy && \ python3 setup.py bdist_wheel && \ - cd ../csrc/rotary && \ + cd ../rotary && \ python3 setup.py bdist_wheel && \ - cd ../csrc/layer_norm && \ + cd ../layer_norm && \ python3 setup.py bdist_wheel FROM base-builder AS deepspeed-builder