(cls, updates=None)
| 335 | |
| 336 | @classmethod |
| 337 | def get_default_config(cls, updates=None): |
| 338 | config = function_args_to_config(cls.__init__) |
| 339 | |
| 340 | if updates is not None: |
| 341 | config.update(ConfigDict(updates).copy_and_resolve_references()) |
| 342 | |
| 343 | return config |
| 344 | |
| 345 | @staticmethod |
| 346 | def get_jax_mesh(axis_dims): |
no test coverage detected