(self, config: Glm4MoeLiteConfig, layer_idx: int)
| 31 | |
| 32 | class Glm4MoeLiteGQLADecoderLayer(Glm4MoeLiteDecoderLayer): |
| 33 | def __init__(self, config: Glm4MoeLiteConfig, layer_idx: int): |
| 34 | super().__init__(config, layer_idx) |
| 35 | self.self_attn = Glm4MoeLiteGQLAAttention(config, layer_idx) |
| 36 | |
| 37 | |
| 38 | class Glm4MoeLiteGQLAModel(Glm4MoeLiteModel): |
nothing calls this directly
no test coverage detected