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(...)
when a large number of jobs submitted to
qcg-pj, it will be failed due to the recursion limitRecursionError: maximum recursion depth exceeded during compilationthe PJ-PY template file needs to be changed
using
instead of