From 5c474bca90ad75b5bebcb1b78ecededf70cfced1 Mon Sep 17 00:00:00 2001 From: bokyeong lee Date: Wed, 11 Sep 2024 18:03:03 +0900 Subject: [PATCH] [luci/service] remove comment This commit remove comment. ONE-DCO-1.0-Signed-off-by: bokyeong Lee --- compiler/luci/service/src/Nodes/CircleRange.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/luci/service/src/Nodes/CircleRange.cpp b/compiler/luci/service/src/Nodes/CircleRange.cpp index defdfe3250e..227165085ab 100644 --- a/compiler/luci/service/src/Nodes/CircleRange.cpp +++ b/compiler/luci/service/src/Nodes/CircleRange.cpp @@ -83,8 +83,6 @@ loco::TensorShape Algorithm::visit(const luci::CircleRange *node) if (delta == 0) INTERNAL_EXN("Delta can not be zero"); - // 'limit-start' and 'delta' have the same sign. - // refer: https://github.com/tensorflow/tensorflow/blob/da82fa9d392d7c3cea3d86b516e55441e963b784/tensorflow/lite/kernels/range.cc#L49-L50 output_shape.dim(0) = ceil((limit - start) / delta); return output_shape;