本文整理匯總了Python中ZIBMolPy.pool.Pool.reload方法的典型用法代碼示例。如果您正苦於以下問題:Python Pool.reload方法的具體用法?Python Pool.reload怎麽用?Python Pool.reload使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ZIBMolPy.pool.Pool
的用法示例。
在下文中一共展示了Pool.reload方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: from ZIBMolPy.pool import Pool [as 別名]
# 或者: from ZIBMolPy.pool.Pool import reload [as 別名]
def main():
options = options_desc.parse_args(sys.argv)[0]
pool = Pool()
if(options.convtest):
for n in pool.where("state in ('converged', 'not-converged')"):
print("\n\nRunning Gelman-Rubin on %s"%n)
conv_check_gelman_rubin(n)
return # exit
auto_refines_counter = 0
while(True):
pool.reload()
pool.reload_nodes()
for n in pool:
n.reload()
active_node = None
for n in pool.where("state in ('em-mdrun-able', 'mdrun-able', 'rerun-able-converged', 'rerun-able-not-converged')"):
if(n.lock()):
active_node = n
break
if(active_node == None):
if(auto_refines_counter < options.auto_refines):
auto_refines_counter += 1
print("\n\nRunning 'zgf_refine --refine-all' for the %d time..."%auto_refines_counter)
zgf_refine.main(["--refine-all"])
continue
else:
break # we're done - exit
try:
process(active_node, options)
active_node.save()
active_node.unlock()
except:
print "MDRUN FAILED"
active_node.state = "mdrun-failed"
active_node.save()
active_node.unlock()
traceback.print_exc()
continue