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>
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>"
*/