Scatter and accumulate ghost values.
(self)
| 233 | self.data[:] = x |
| 234 | |
| 235 | def scatter_reverse(self) -> None: |
| 236 | """Scatter and accumulate ghost values.""" |
| 237 | self._cpp_object.scatter_reverse() |
| 238 | |
| 239 | def squared_norm(self) -> np.floating: |
| 240 | """Compute the squared Frobenius norm. |
nothing calls this directly
no test coverage detected