d-smirnov commented on a change in pull request #8509: URL: https://github.com/apache/tvm/pull/8509#discussion_r802595637
########## File path: src/tir/ir/stmt.cc ########## @@ -366,19 +366,19 @@ Allocate::Allocate(Var buffer_var, DataType dtype, Array<PrimExpr> extents, Prim data_ = std::move(node); } -int32_t AllocateNode::constant_allocation_size(const Array<PrimExpr>& extents) { - int64_t result = 1; +size_t AllocateNode::ConstantAllocationSize(const Array<PrimExpr>& extents) { + size_t result = 1; Review comment: Changed to int64_t -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tvm.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org