Skip to content

Commit

Permalink
Restrict causal_conv1d version < 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tridao committed Feb 25, 2024
1 parent 3854ad8 commit d5c772f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ with an efficient hardware-aware design and implementation in the spirit of [Fla

## Installation

- `pip install causal-conv1d>=1.1.0`: an efficient implementation of a simple causal Conv1d layer used inside the Mamba block.
- `pip install causal-conv1d>=1.1.0,<1.2.0`: an efficient implementation of a simple causal Conv1d layer used inside the Mamba block.
- `pip install mamba-ssm`: the core Mamba package.

It can also be built from source with `pip install .` from this repository.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,6 @@ def run(self):
"einops",
"triton",
"transformers",
"causal_conv1d>=1.1.0",
"causal_conv1d>=1.1.0,<1.2.0",
],
)

0 comments on commit d5c772f

Please sign in to comment.