-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove constexpr in launch template to fix CI compilation
- Loading branch information
Showing
5 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,11 +85,11 @@ RUN pip install transformers==4.25.1 datasets==2.8.0 pytorch-lightning==1.8.6 tr | |
RUN pip install git+https://github.com/mlcommons/[email protected] | ||
|
||
# Install FlashAttention | ||
RUN pip install flash-attn==2.1.2.post1 | ||
RUN pip install flash-attn==2.1.2.post2 | ||
|
||
# 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.1.2.post1 \ | ||
&& cd flash-attention && git checkout v2.1.2.post2 \ | ||
&& cd csrc/fused_softmax && pip install . && cd ../../ \ | ||
&& cd csrc/rotary && pip install . && cd ../../ \ | ||
&& cd csrc/xentropy && pip install . && cd ../../ \ | ||
|