From: Shubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 Date: Wed, 31 Oct 2018 01:24:50 +0000 (+0530) Subject: Removing TODO for pool op (#3370) X-Git-Tag: 0.3~498 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=32141c989f5a9c621d8af91cf8b3ec10d2e97db3;p=platform%2Fcore%2Fml%2Fnnfw.git Removing TODO for pool op (#3370) This patch will remove TODO statement for max_pool and avg_pool Signed-off-by: shubham --- diff --git a/runtimes/pure_arm_compute/src/compilation.cc b/runtimes/pure_arm_compute/src/compilation.cc index 14e9452..5727846 100644 --- a/runtimes/pure_arm_compute/src/compilation.cc +++ b/runtimes/pure_arm_compute/src/compilation.cc @@ -1700,7 +1700,6 @@ void Planner::visit(const ::internal::tflite::op::MaxPool2D::Explicit::Node &nod const ::internal::tflite::operand::Index activation_index{node.param().activation_index}; - // TODO 4D tensor (dim(0) !=1 ) const auto ofm_shape = _ctx.at(ofm_index).shape().asFeature(); const auto ifm_shape = _ctx.at(ifm_index).shape().asFeature(); @@ -1934,7 +1933,6 @@ void Planner::visit(const ::internal::tflite::op::AvgPool2D::Explicit::Node &nod const ::internal::tflite::operand::Index activation_index{node.param().activation_index}; - // TODO 4D tensor (dim(0) != 1) const auto ofm_shape = _ctx.at(ofm_index).shape().asFeature(); const auto ifm_shape = _ctx.at(ifm_index).shape().asFeature();