You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The best individual in current population.
if mpi.is_master:
best_indv = self.population.best_indv(self.fitness)
else:
best_indv = None
best_indv = mpi.bcast(best_indv)
The text was updated successfully, but these errors were encountered:
我看代码, fitness运行并没有并行啊,如果是mpi master的话会全部都算一次啊
The text was updated successfully, but these errors were encountered: