LoadLeveler 作业脚本的作业步骤循环?

发布于 2024-09-25 19:30:13 字数 435 浏览 5 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

允世 2024-10-02 19:30:13

当出现这种情况时,我们通常只建议编写一个 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文