From 9a1c7fcc8ce105f57c3780cc16f6fd8db342b31a Mon Sep 17 00:00:00 2001 From: Tianqi Chen <tqchen@users.noreply.github.com> Date: Sun, 28 Jan 2018 14:43:17 -0800 Subject: [PATCH] [TOPI] Fix compiler warning in topi cpp (#837) --- topi/include/topi/detail/broadcast.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topi/include/topi/detail/broadcast.h b/topi/include/topi/detail/broadcast.h index ba7193cd0..d76aa7d0e 100644 --- a/topi/include/topi/detail/broadcast.h +++ b/topi/include/topi/detail/broadcast.h @@ -55,7 +55,7 @@ inline BroadcastHelper BroadcastShape(const tvm::Array<tvm::Expr>& shape1, auto max_size = std::max(s1_size, s2_size); auto& shape = (s1_size > s2_size) ? shape1 : shape2; auto& vars = (s1_size > s2_size) ? bh.vars1 : bh.vars2; - for (i = i; i <= max_size; ++i) { + for (; i <= max_size; ++i) { bh.all_vars.push_front(tvm::Var()); bh.common_shape.push_front(shape[max_size - i]); vars.push_front(bh.all_vars[0]); -- GitLab