(self, cfg: Config)
| 277 | partition_specs: Required[Dict[str, PartitionSpec]] = REQUIRED |
| 278 | |
| 279 | def __init__(self, cfg: Config): |
| 280 | super().__init__(cfg) |
| 281 | self._attribute_dicts = self.config.partition_specs |
| 282 | |
| 283 | def __call__(self, cfg: SpmdTrainer.Config) -> SpmdTrainer.Config: |
| 284 | """Update the partition_spec attributes for the specified modules. |