我一直在阅读和重新阅读 IPython 文档/教程,但我无法弄清楚这段特定代码的问题。似乎该函数dimensionless_run
对传递给每个引擎的命名空间不可见,但我很困惑,因为该函数是在中定义的__main__
,并且作为全局命名空间的一部分清晰可见。
wrapper.py:
import math, os
def dimensionless_run(inputs):
output_file = open(inputs['fn'],'w')
...
return output_stats
def parallel_run(inputs):
import math, os ## Removing this line causes a NameError: global name 'math'
## is not defined.
folder = inputs['folder']
zfill_amt = int(math.floor(math.log10(inputs['num_iters'])))
for i in range(inputs['num_iters']):
run_num_str = str(i).zfill(zfill_amt)
if not os.path.exists(folder + '/'):
os.mkdir(folder)
dimensionless_run(inputs)
return
if __name__ == "__main__":
inputs = [input1,input2,...]
client = Client()
lbview = client.load_balanced_view()
lbview.block = True
for x in sorted(globals().items()):
print x
lbview.map(parallel_run,inputs)
ipcluster start --n=6
在生成排序后的全局字典之后执行此代码,包括math
andos
模块和parallel_run
anddimensionless_run
函数。紧随其后的是 IPython.parallel.error.CompositeError: an or more exceptions from call to method: parallel_run,由大量的 组成[n:apply]: NameError: global name 'dimensionless_run' is not defined
,其中 n 从 0 到 5 运行。
有两件事我不明白,它们显然是相关的。
- 为什么代码没有
dimensionless_run
在全局命名空间中识别? - 为什么
import math, os
需要在parallel_run的定义里面?
编辑:结果证明这根本不是命名空间错误——我ipcluster start --n=6
在一个不包含代码的目录中执行。要修复它,我需要做的就是在我的代码目录中执行 start 命令。我还通过添加以下行来修复它:
inputs = input_pairs
os.system("ipcluster start -n 6") #NEW
client = Client()
...
lbview.map(parallel_run,inputs)
os.system("ipcluster stop") #NEW
在正确的位置启动所需的集群。