[locop] Remove unused class in FormattedGraph.cpp (#6420)
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 9 Aug 2019 01:59:26 +0000 (10:59 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 9 Aug 2019 01:59:26 +0000 (10:59 +0900)
CanonicalNodeSummaryBuilder was introduced for FormattedTensorShape class,
but CanonicalNodeSummaryBuilder is now not in this file, and thus no code
now uses this class.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
compiler/locop/src/FormattedGraph.cpp

index a267adf..16416dd 100644 (file)
@@ -47,32 +47,6 @@ std::string symbol_lookup(const SymbolTable &tbl, const loco::Node *node)
 namespace
 {
 
-// TODO Move this into loco
-class FormattedTensorShape
-{
-public:
-  FormattedTensorShape(const loco::TensorShape *ptr) : _ptr{ptr}
-  {
-    // DO NOTHING
-  }
-
-public:
-  const loco::TensorShape &get(void) const { return *_ptr; }
-
-private:
-  const loco::TensorShape *_ptr;
-};
-
-inline FormattedTensorShape pretty(const loco::TensorShape &shape)
-{
-  return FormattedTensorShape{&shape};
-}
-
-} // namespace
-
-namespace
-{
-
 /**
  * @brief Return the opname as "<dialect>.<op>"
  */