Skip to content

Commit

Permalink
revert assertion change for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Hatef committed Aug 24, 2024
1 parent 0aaaa32 commit 94b03f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions megatron/model/mamba/mamba.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
from causal_conv1d import causal_conv1d_fn
import einops
except ModuleNotFoundError:
assert False, "Unable to import Mamba kernels. Install them from our requirements/requirements-mamba.txt, \
or directly from https://github.com/state-spaces/mamba"
print( "Unable to import Mamba kernels. Install them from our requirements/requirements-mamba.txt, \
or directly from https://github.com/state-spaces/mamba")
pass

from megatron.model.norms import get_norm
from megatron import mpu
Expand Down

0 comments on commit 94b03f5

Please sign in to comment.