sequence_expand 问题
Created by: dongfangyixi
遇到一个问题是,比如: x 的 lod = [[0, 1, 2], [0, 5, 10]] y 的 lod = [[0, 15, 25]] 要把x 的 lod expand成y的在ref level=0 就是 x 的 lod ==> [[0, 15, 25], [0, 5, 10]] 把y的lod expand成 x的 在ref level=1 就是y的lod ==> [[0, 15, 25], [0, 5, 10]] 但是 x = fluid.layers.sequence_expand(x, y, ref_level=0) 报错 x不支持 lod level = 2 y = fluid.layers.sequence_expand(y, x, ref_level=1) y并没有 expand lod没变。 有什么好办法吗?