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

fix fc fuse proble (#36568)

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