From 5ce888d5552a6acce5830ec132c9c441c575b1e4 Mon Sep 17 00:00:00 2001 From: bokyeong lee Date: Thu, 12 Sep 2024 15:27:01 +0900 Subject: [PATCH] [luci/service] revise url This commit revise url to short. ONE-DCO-1.0-Signed-off-by: bokyeong lee --- compiler/luci/service/src/Nodes/CircleRange.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/luci/service/src/Nodes/CircleRange.cpp b/compiler/luci/service/src/Nodes/CircleRange.cpp index dfd8115b663..8514cd67328 100644 --- a/compiler/luci/service/src/Nodes/CircleRange.cpp +++ b/compiler/luci/service/src/Nodes/CircleRange.cpp @@ -89,7 +89,7 @@ loco::TensorShape Algorithm::visit(const luci::CircleRange *node) * 'limit - start' and 'delta' have the same sign. * c1. '(limit - start) >= 0' -> 'delta > 0' * c2. '(limit - start) < 0' -> 'delta < 0' - * https://github.com/tensorflow/tensorflow/blob/da82fa9d392d7c3cea3d86b516e55441e963b784/tensorflow/lite/kernels/range.cc#L49-L50 + * https://github.com/tensorflow/tensorflow/blob/da82fa9/tensorflow/lite/kernels/range.cc#L49-L50 */ output_shape.dim(0) = ceil((limit - start) / delta);