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
{{ message }}
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
Hi, I am trying to run the examples in cluster system.Whenever I try to run the code using 'mpirun -np 8 python cubic.py',the following error comes,
sisso_regressor.fit(X, y)
File "/export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/pysisso/sklearn.py", line 271, in fit
c.run()
File "/export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/custodian/custodian.py", line 372, in run
self._run_job(job_n, job)
File "/export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/custodian/custodian.py", line 510, in _run_job
raise ReturnCodeError(s, True) custodian.custodian.ReturnCodeError: Job return code is 1. Terminating...
The text was updated successfully, but these errors were encountered:
Hi, it seems that this repo is a dead project, but try to:
option 1) set terminate_on_nonzero_returncode=False in the file /export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/custodian/custodian.py in the line #127
option 2) pass terminate_on_nonzero_returncode=False in line #270 in ../pysisso/skleran.py when initializing Custodian, i.e.
replace c = Custodian(jobs=[job], handlers=[], validators=[])
by c = Custodian(jobs=[job], handlers=[], validators=[], terminate_on_nonzero_returncode=False)
option 1 worked for me. option 2 was not tested.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi, I am trying to run the examples in cluster system.Whenever I try to run the code using 'mpirun -np 8 python cubic.py',the following error comes,
sisso_regressor.fit(X, y)
File "/export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/pysisso/sklearn.py", line 271, in fit
c.run()
File "/export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/custodian/custodian.py", line 372, in run
self._run_job(job_n, job)
File "/export/home/kjeyakumar/anaconda3/lib/python3.8/site-packages/custodian/custodian.py", line 510, in _run_job
raise ReturnCodeError(s, True)
custodian.custodian.ReturnCodeError: Job return code is 1. Terminating...
The text was updated successfully, but these errors were encountered: