Skip to content

Commit

Permalink
made FA a global package
Browse files Browse the repository at this point in the history
  • Loading branch information
ardagoreci committed Aug 1, 2024
1 parent 8f5207e commit ab5b56b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ packaging~=23.2
absl-py

# --------- pytorch --------- #
torch~=2.2.0
torchvision~=0.17.0
lightning~=2.1.4
torchmetrics~=1.3.0.post0
torch==2.3.1
torchvision
lightning
torchmetrics

# --------- kernels --------- #
deepspeed # works in Colab
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def run_flash_attn_setup():
author_email='[email protected]',
license='Apache License, Version 2.0',
url='https://github.com/Ligo-Biosciences/AlphaFold3',
packages=find_packages(exclude=["tests", "scripts"]),
packages=find_packages(include=["flash_attn", "flash_attn.*"], exclude=["tests", "scripts"]),
include_package_data=True,
package_data={
"src": ['utils/kernel/csrc/*'],
Expand Down

0 comments on commit ab5b56b

Please sign in to comment.