From: Shubham Gupta/System SW /SRI-Bangalore/Engineer/삼성전자 Date: Thu, 25 Oct 2018 00:46:21 +0000 (+0530) Subject: Remove unused shape variables from L2Pool (#3329) X-Git-Tag: 0.3~528 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6fd0988086406200363ab04917329108ba8b6d4d;p=platform%2Fcore%2Fml%2Fnnfw.git Remove unused shape variables from L2Pool (#3329) This patch will remove the unused shape variable from L2Pool. Signed-off-by: shubham --- diff --git a/runtimes/pure_arm_compute/src/compilation.cc b/runtimes/pure_arm_compute/src/compilation.cc index e28d879..7206815 100644 --- a/runtimes/pure_arm_compute/src/compilation.cc +++ b/runtimes/pure_arm_compute/src/compilation.cc @@ -4179,9 +4179,6 @@ void Planner::visit(const ::internal::tflite::op::L2Pool2D::Explicit::Node &node const ::internal::tflite::operand::Index activation_index{node.param().activation_index}; - const auto ofm_shape = _ctx.at(ofm_index).shape().asFeature(); - const auto ifm_shape = _ctx.at(ifm_index).shape().asFeature(); - const int32_t kh = _ctx.at(kh_index).asScalar(); const int32_t kw = _ctx.at(kw_index).asScalar();