【发布时间】:2013-09-01 02:49:05
【问题描述】:
我正在将我编写的一些代码翻译成一个并行进程,以便分发到我家乡大学的计算机集群上。为了准备为集群编写脚本,我首先阅读了集群提供的 Python 代码示例 sn-ps 之一:
#! /usr/bin/python
# This script replicates a given test with varied parameters
# creating unique submit scripts and executing the submission to the CRC SGE queue
# Imports
import os
import shutil
import string
basedir=os.getcwd()
origTestFol='wwd'
templFol='template'
origTestDir= basedir + '/' + origTestFol
templFolDir= basedir + '/' + templFol
steps=[0,1,2,3,4,5,6,7,8,9]
primes=[2,3,5,7,11,13,17,19,23,29,31]
trials=[6,7,8,9,10]
for step in steps:
newTestDir= origTestDir + '_nm_' + str(step)
if not os.path.exists(newTestDir):
os.mkdir(newTestDir)
os.chdir(newTestDir)
for trial in trials:
newTestSubDir= newTestDir + '/' + str(trial)
if not os.path.exists(newTestSubDir):
shutil.copytree(templFolDir,newTestSubDir)
os.chdir(newTestSubDir)
os.system('sed -i \'s/seedvalue/' + str(primes[trial]) + '/g\' wwd.nm.conf')
os.system('sed -i \'s/stepval/' + str(step) + '/g\' qsubScript.sh')
os.system('qsub qsubScript.sh')
os.chdir(basedir)
我可以按照代码直到最后四行 [e.g.直到 "os.system('sed -i ...)"] 但随后很难遵循代码。有没有其他人可以帮助我理解最后四行在做什么。有没有办法用伪代码来描述谎言?据我所知,第一行 sed 试图用 primes[trial] 的值替换“种子值”,但我不确定种子值是什么。我也不确定如何理解下一行中的“stepval”。任何其他人可以对这些问题提出的任何启发都将不胜感激。
【问题讨论】: