提交 3059d6f1 authored 作者: Pascal Lamblin's avatar Pascal Lamblin

Add Rebroadcast to the list of ops get_constant_value digs through.

上级 79d19f3d
......@@ -87,6 +87,8 @@ def get_constant_value(v):
return get_constant_value(v.owner.inputs[0])
if isinstance(v.owner.op, T.DimShuffle):
return get_constant_value(v.owner.inputs[0])
if isinstance(v.owner.op, T.Rebroadcast):
return get_constant_value(v.owner.inputs[0]))
if v.owner.op == T.fill:
shape, val = v.owner.inputs
# fill(a,b) fills the shape of 'a' filled with 'b'
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论