(self)
| 597 | |
| 598 | @nowrap |
| 599 | def dtype(self): |
| 600 | if self.config.dtype is not None: |
| 601 | return self.config.dtype |
| 602 | if self.parent is not None: |
| 603 | return self.parent.dtype() |
| 604 | return jnp.float32 |
| 605 | |
| 606 | def param_init(self) -> param_init.Initializer: |
| 607 | init = getattr(self, "_param_init", None) |
no outgoing calls