PBS脚本的作业执行时间(串行作业)
我试图计算出使用便携式批处理系统
(PBS) 完成的串行作业的执行时间。该信息是否位于“尾声”部分的“资源”下的输出文件 (task.o*) 中?是walltime
吗?
I'm trying to figure out the execution time of a serial job that was done using Portable Batch System
(PBS). Is that information in the output file (task.o*), under Resources in the Epilogue section? Is it walltime
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有时walltime包括你的项目最后的时间+被接受的时间
我认为由服务器开始运行。您可以使用:
其中executable 是可执行文件的名称,“time”是来自linux 的命令。然后
您可以在输出文件中看到模拟持续的时间。
sometimes walltime includes both the time your program last + the time of being accepted
by the server in order to start running, i think. you can use:
where executable is the name of your executable and 'time' a command from linux. Then
you can see the time your simulation lasts in the output file.