From 30fd8c17d8253310ff3a69636e5c9ce8982e3cf5 Mon Sep 17 00:00:00 2001 From: chuanli11 Date: Thu, 20 Jul 2023 16:40:15 +0000 Subject: [PATCH] remove checkout v2.0.0.post1 from dockerfile --- training/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/training/Dockerfile b/training/Dockerfile index de535e7..84d1a71 100644 --- a/training/Dockerfile +++ b/training/Dockerfile @@ -89,7 +89,7 @@ RUN pip install flash-attn==2.0.0.post1 # Install CUDA extensions for cross-entropy, fused dense, layer norm RUN git clone https://github.com/HazyResearch/flash-attention \ - && cd flash-attention && git checkout v2.0.0.post1 \ + && cd flash-attention \ && cd csrc/fused_softmax && pip install . && cd ../../ \ && cd csrc/rotary && pip install . && cd ../../ \ && cd csrc/xentropy && pip install . && cd ../../ \