This commit adds summary for TFReshape node
Signed-off-by: Cheongyo Bahk <ch.bahk@samsung.com>
IMPLEMENT(TFConv2D);
IMPLEMENT(TFFusedBatchNorm);
IMPLEMENT(TFMul);
+ IMPLEMENT(TFReshape);
IMPLEMENT(TFRsqrt);
#undef IMPLEMENT
};
return true;
}
+bool TFNodeSummaryBuilder::summary(const TFReshape *node, locop::NodeSummary &s) const
+{
+ s.opname("TF.Reshape");
+ s.args().append("tensor", _tbl->lookup(node->tensor()));
+ s.args().append("shape", _tbl->lookup(node->shape()));
+ s.state(locop::NodeSummary::State::Complete);
+ return true;
+}
+
bool TFNodeSummaryBuilder::summary(const TFRsqrt *node, locop::NodeSummary &s) const
{
s.opname("TF.Rsqrt");