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
in the current version, for each submitted job on the remote machine,
these statements
with cd(job_results_dir[threading.get_ident()]['job_results']):
with prefix(env.run_prefix):
run(...)
are not needed to be executed on the remote machine, for example, if run_prefix contains loading modules, you will get error output like
'module load' works only on Wn(worker nodes)!
To use module load please create job/interactive job.
however, in the case of localhost executing, those are mandatory
I think adding a simple check to ignore the execution of these commands would be helpful to decrease the output log
The text was updated successfully, but these errors were encountered:
in the current version, for each submitted job on the remote machine,
these statements
are not needed to be executed on the remote machine, for example, if run_prefix contains loading modules, you will get error output like
however, in the case of localhost executing, those are mandatory
I think adding a simple check to ignore the execution of these commands would be helpful to decrease the output log
The text was updated successfully, but these errors were encountered: