[moco-tf] Revise TFNodeSummaryBuilder for TFConst (#7826)
author박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Mon, 30 Sep 2019 09:02:35 +0000 (18:02 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Mon, 30 Sep 2019 09:02:35 +0000 (18:02 +0900)
This will remove shape information for TFConst as shape is shown in loco

Signed-off-by: SaeHie Park <saehie.park@samsung.com>
compiler/moco-tf/src/TFFormattedGraph.cpp

index 849f8da..d4c4a34 100644 (file)
@@ -16,8 +16,6 @@
 
 #include "TFFormattedGraph.h"
 
-#include "Annotations/ShapeInferenceData.h"
-
 #include "Dialect/TFDialect.h"
 #include "Dialect/TFNodes.h"
 
@@ -178,10 +176,6 @@ bool TFNodeSummaryBuilder::summary(const TFConst *node, locop::NodeSummary &s) c
 {
   std::ostringstream ss;
 
-  auto shapedata = node->annot<ShapeInferenceData>();
-  // TODO show real numbers like [1,2,3,4]
-  s.args().append("shape", shapedata ? "OK" : "?");
-
   auto dtype = node->dtype();
   switch (dtype)
   {