Commit 893a0938 by liyinqiao

Bug fixed.

Fix the minor bugs in IsSameShaped.
parent 00d7b386
......@@ -75,7 +75,7 @@ check whether the three matrices are in the same type and size
*/
bool _IsSameShaped(const XTensor * a, const XTensor * b, const XTensor * c)
{
return IsSameShaped(a, b) && IsSameShaped(a, c);
return _IsSameShaped(a, b) && _IsSameShaped(a, c);
}
/*
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论