Skip to content

Commit

Permalink
forgot flash-attention in check
Browse files Browse the repository at this point in the history
  • Loading branch information
winglian committed Jan 10, 2024
1 parent a068283 commit f2a975d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ def parse_requirements():
lines = [r.strip() for r in requirements_file.readlines()]
for line in lines:
is_extras = (
"flash-attn" in line or "deepspeed" in line or "mamba-ssm" in line
"flash-attn" in line
or "flash-attention" in line
or "deepspeed" in line
or "mamba-ssm" in line
)
if line.startswith("--extra-index-url"):
# Handle custom index URLs
Expand Down

0 comments on commit f2a975d

Please sign in to comment.