This is an automated email from the ASF dual-hosted git repository. tqchen pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tvm.git
commit dc2e06a86b92c5054565e9bdbb46b18b74643a9c Author: Qingchao Shen <[email protected]> AuthorDate: Tue May 13 12:42:32 2025 +0800 Update estimate_flops.cc --- src/tir/analysis/estimate_flops.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tir/analysis/estimate_flops.cc b/src/tir/analysis/estimate_flops.cc index 721145c16b..586ee04197 100644 --- a/src/tir/analysis/estimate_flops.cc +++ b/src/tir/analysis/estimate_flops.cc @@ -174,7 +174,7 @@ class FlopEstimator : private ExprFunctor<TResult(const PrimExpr& n)>, } TResult VisitStmt_(const WhileNode* op) override { - // TODO: @jikechao Improve while loop FLOP estimation with loop bound analysis + // TODO(jikechao): Improve while loop FLOP estimation with loop bound analysis TResult result = VisitExpr(op->condition); result += VisitStmt(op->body); return result;
