We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a configuration option for redirecting stdout to a user-specified filename.
The text was updated successfully, but these errors were encountered:
For PBS, stdout/stderr can be controlled with PBS option "-e / -o / -j". We can specify them like this:
[Platform] Queue = PBS [Queue] options = -q queue_name = -e stderr.log = -o stdout.log
In addition to that, autoperf will invoke the job like this in the PBS script:
# run the experiment {exp_run} 2>&1 | tee {datadir}/job.log
i.e., stdout and stderr are dumped into {datadir}/job.log.
{datadir}/job.log
That been said, I believe you already know all the above, so I guess maybe you are asking to add a new option to change {datadir}/job.log?
Sorry, something went wrong.
This is for non-PBS jobs, so we need to capture the stderr/stdout of the user-specified executable.
For serial or mic jobs, we have the similar:
Check https://github.com/HPCL/autoperf/blob/master/autoperf/queues/serial.py#L18 and https://github.com/HPCL/autoperf/blob/master/autoperf/queues/mic.py#L22
No branches or pull requests
Add a configuration option for redirecting stdout to a user-specified filename.
The text was updated successfully, but these errors were encountered: