Skip to content

Commit

Permalink
add optional dependencies in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
tocean committed Jan 30, 2024
1 parent 5d2f9b1 commit df2725e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,8 @@ classifiers=[
]
dependencies = [
"torch",
"transformer-engine@git+https://github.com/NVIDIA/TransformerEngine.git@v0.11#egg=transformer-engine",
"flash-attn==1.0.9",
"colorlog>=6.7.0",
"deepspeed==0.9.2",
"mpi4py",
]
dynamic = ["version"]

Expand All @@ -56,6 +53,14 @@ test = [
"pytest>=7.2.0",
"yapf>=0.32.0",
]
nvidia = [
"transformer-engine@git+https://github.com/NVIDIA/TransformerEngine.git@v0.11#egg=transformer-engine",
"flash-attn==1.0.9",
"mpi4py",
]
amd = [
# TransformerEngine
]

[project.urls]
homepage = "https://github.com/Azure/MS-AMP"
Expand Down

0 comments on commit df2725e

Please sign in to comment.