未验证 提交 fc5db55a 编写于 作者: W Wilber 提交者: GitHub

fix fc fuse proble (#36568)

上级 3f2d6a3f
......@@ -51,7 +51,12 @@ FCFusePass::FCFusePass() {
.IsTensor()
.End()
.AddAttr("axis")
.IsNumGE(1)
.IsNumMatch<int>([](int axis) -> bool {
if (axis == -1 || axis >= 1) {
return true;
}
return false;
})
.End();
AddOpCompat(OpCompat("relu"))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册