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
Hello all,
I am trying to use ipyparallel with a module for Genetic Algorithm (pymoo) and for that, I need to pass the class name 'MyProblem' to the clusters (don't know really why clusters are not aware but I have also the same problem with function defined in the main program). When I pass the name using 'dview["MyProblem"] = MyProblem' I am facing a recursing error.
This is the simplified code below which reproduce the error. Do you have any idea ?
importnumpyasnpimportipyparallelasippfrompymoo.algorithms.moo.nsga2importNSGA2frompymoo.core.problemimportElementwiseProblemfrompymoo.optimizeimportminimize# Very simplified problemclassMyProblem(ElementwiseProblem):
def__init__(self):
super().__init__(n_var=1,
n_obj=1,
n_constr=0,
xl=np.array([0]),
xu=np.array([1]))
def_evaluate(self, x, out, *args, **kwargs):
# Fitness functions (values to minimize)f1=-x[0]
out["F"] = [f1]
# Start the clustersnb_core=16rc=ipp.Cluster(n=nb_core).start_and_connect_sync()
rc.wait_for_engines(n=nb_core)
dview=rc[:]
# Send class def to all cluster for further usedview["MyProblem"] =MyProblem
Thanks in advance for your help.
Patrick.
The text was updated successfully, but these errors were encountered:
You might try dview.use_cloudpickle() if you have more complex local objects to push. Otherwise, it's often more robust to just define classes remotely instead of pushign them if you can, e.g. via view.run.
Hello all,
I am trying to use ipyparallel with a module for Genetic Algorithm (pymoo) and for that, I need to pass the class name 'MyProblem' to the clusters (don't know really why clusters are not aware but I have also the same problem with function defined in the main program). When I pass the name using 'dview["MyProblem"] = MyProblem' I am facing a recursing error.
This is the simplified code below which reproduce the error. Do you have any idea ?
Thanks in advance for your help.
Patrick.
The text was updated successfully, but these errors were encountered: