| 65 | |
| 66 | @dataclass |
| 67 | class MambaStackSubmodules: |
| 68 | mamba_layer: Union[ModuleSpec, type] = IdentityOp |
| 69 | attention_layer: Union[ModuleSpec, type] = IdentityOp |
| 70 | mlp_layer: Union[ModuleSpec, type] = IdentityOp |
| 71 | |
| 72 | |
| 73 | class MambaStack(MegatronModule): |
no outgoing calls
no test coverage detected