You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/07/30 23:21:29 UTC

[incubator-tvm] branch master updated: Fix incorrect function signature in header (#6172)

This is an automated email from the ASF dual-hosted git repository.

tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git


The following commit(s) were added to refs/heads/master by this push:
     new a2c6cb6  Fix incorrect function signature in header (#6172)
a2c6cb6 is described below

commit a2c6cb6420c09f05202dc10a42fce324ac503ec3
Author: Wuwei Lin <wu...@apache.org>
AuthorDate: Thu Jul 30 19:21:19 2020 -0400

    Fix incorrect function signature in header (#6172)
---
 include/tvm/relay/attrs/memory.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/tvm/relay/attrs/memory.h b/include/tvm/relay/attrs/memory.h
index b737103..85462c0 100644
--- a/include/tvm/relay/attrs/memory.h
+++ b/include/tvm/relay/attrs/memory.h
@@ -35,7 +35,7 @@ namespace relay {
 
 std::vector<TensorType> FlattenTupleType(const Type& type);
 std::vector<Expr> FromTupleType(const Type& type, const Expr& expr);
-Expr ToTupleType(const Type& t, const Array<Expr>& exprs);
+Expr ToTupleType(const Type& t, const std::vector<Expr>& exprs);
 
 /*!
  * \brief Options for allocating storage.