(self)
| 616 | return self.layout.global_shape(self.domain, self.scales) |
| 617 | |
| 618 | def copy(self): |
| 619 | copy = Field(self.dist, bases=self.domain.bases, tensorsig=self.tensorsig, dtype=self.dtype) |
| 620 | copy.preset_scales(self.scales) |
| 621 | copy[self.layout] = self.data |
| 622 | return copy |
| 623 | |
| 624 | def set_global_data(self, global_data): |
| 625 | elements = self.layout.local_elements(self.domain, self.scales) |