LoadLeveler 作业脚本的作业步骤循环?
我正在使用 LoadLeveler 在 IBM/BlueGene 架构上提交作业。我阅读了 IBM 制作的文档,也尝试了 Google,但我找不到如何执行以下操作,我期望应该在那里:
可以使用
queue
关键字告诉 LoadLeveler 描述了一个新的作业步骤,这样我就可以做类似的事情
first_step
queue
second_step
queue
,但我找不到一种方法,可以做类似的事情:
loop job_id = 1,10
do_job_with_given_job_id
end
我是否必须编写一个“正常”的shell脚本来多次调用负载级别脚本,或者是否有一些内置的循环机制?我知道其他职位经理可以做到这一点。
I'm using LoadLeveler to submit jobs on an IBM/BlueGene architecture. I read the documentation made from IBM and also gave Google a try, but I cannot find how to do the following, which I expect should be there:
One can use the
queue
keyword to tell LoadLeveler that a new job step is described, so I could do something like
first_step
queue
second_step
queue
but what I fail to find is a way that does something like
loop job_id = 1,10
do_job_with_given_job_id
end
Do I have to write a "normal" shell script that in turn calls a load level script for a bunch of times, or is there some built in loop mechanism? I know that other job managers can do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当出现这种情况时,我们通常只建议编写一个 shell 脚本来生成一个或多个作业提交脚本;这就是我为自己的工作所做的事情。这些步骤是否相互依赖?
另外,出于好奇,哪些调度程序/资源管理器可以在提交脚本的循环中对多个作业进行排队?不是基于 PBS 的...
When this comes up, we normally just recommend that one writes a shell script which generates the job submission script or scripts; that's what I do for my own jobs. Do these steps have dependancies on each other?
Also, just out of curiosity, which schedulers/resource managers can queue multiple jobs within a loop in a submission script? Not the PBS-based ones...