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
when a large number of jobs submitted to qcg-pj , it will be failed due to the recursion limit RecursionError: maximum recursion depth exceeded during compilation
the PJ-PY template file needs to be changed
using
jobs = Jobs();
jobs.add( ...);
jobs.add(...)
instead of
Jobs().add(....).add(...)
The text was updated successfully, but these errors were encountered:
when a large number of jobs submitted to
qcg-pj
, it will be failed due to the recursion limitRecursionError: maximum recursion depth exceeded during compilation
the PJ-PY template file needs to be changed
using
instead of
The text was updated successfully, but these errors were encountered: