Fix model title not being broadcast to all ranks

这个提交包含在:
nmannall
2024-10-11 13:56:46 +01:00
父节点 1ad7ed64da
当前提交 15e8eb0e73

查看文件

@@ -58,6 +58,8 @@ class MPIModel(Model):
return super().build_geometry()
def _broadcast_model(self):
self.title = self.comm.bcast(self.title)
self.nx = self.comm.bcast(self.nx)
self.ny = self.comm.bcast(self.ny)
self.nz = self.comm.bcast(self.nz)