Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚使用Portable Batch System(PBS)完成的串行作业的执行时间。该信息是否在输出文件 (task.o*) 中,位于 Epilogue 部分的 Resources 下?是walltime吗?
Portable Batch System
walltime
我认为,有时 walltime 包括您的程序最后的时间 + 被服务器接受以便开始运行的时间。您可以使用:
time ./executable
其中 executable 是您的可执行文件的名称,而“time”是来自 linux 的命令。然后你可以在输出文件中看到你的模拟持续的时间。