[coco] Remove Op::dispose (#1761)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 5 Oct 2018 09:31:28 +0000 (18:31 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 5 Oct 2018 09:31:28 +0000 (18:31 +0900)
commitd28f570ce19e436f379be03f550daaf272092828
treeba8d56da19e5796f4b2db2fac2f0be261f6026b9
parent6edae7a9ba708c2becc4b69d8c027ef8e632a3c9
[coco] Remove Op::dispose (#1761)

'dispose' was introduced as a mean to unlink itself before
destruction as each Op implementation does not unlink itself
on destruction at that time.

Now, 'Use' and 'Step' allow every 'Op' to unlink itself on destruction,
and thus 'dispose' is no longer necessary.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
12 files changed:
contrib/coco/core/include/coco/IR/AvgPool2D.h
contrib/coco/core/include/coco/IR/Conv2D.h
contrib/coco/core/include/coco/IR/MaxPool2D.h
contrib/coco/core/include/coco/IR/Op.h
contrib/coco/core/include/coco/IR/OpManager.h
contrib/coco/core/include/coco/IR/PadF.h
contrib/coco/core/src/IR/AvgPool2D.cpp
contrib/coco/core/src/IR/Conv2D.cpp
contrib/coco/core/src/IR/Conv2D.test.cpp
contrib/coco/core/src/IR/MaxPool2D.cpp
contrib/coco/core/src/IR/OpManager.cpp
contrib/coco/core/src/IR/PadF.cpp