多次返回并调用 ray.get() 的 Ray python 示例

问题描述

以下代码执行所需的行为。是否可以从前两个函数传递第二个参数而不必过早调用 ray.get

@ray.remote
def color():
    image=cv2.imread("frame30.png",flags=0)
    argument= "Hello"
    return image,argument

@ray.remote
def black():
    image=cv2.imread("frame30.png",flags=0)
    argument= "world"
    return image,argument

@ray.remote
def concate_two_args(a,b):
    return a + " " + b

col= color.remote()
blk= black.remote()

#Do I have to "ray.get" in order to pass the results to concate_two_args?
temp1= ray.get(col)[1]
temp2= ray.get(blk)[1]

results= concate_two_args.remote(temp1,temp2)

ray.get(results)

直接做这个

col,string= color.remote()

ray.get(string)

返回

TypeError: cannot unpack non-iterable ray._raylet.ObjectRef object

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)