Skip to content

Commit

Permalink
Fix incorrect function signature in header
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 committed Jul 30, 2020
1 parent 526b5a5 commit f75f1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tvm/relay/attrs/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f75f1e4

Please sign in to comment.