Skip to content

Commit

Permalink
Fix incorrect function signature in header (apache#6172)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 authored and Trevor Morris committed Aug 26, 2020
1 parent 2f06eb4 commit 8b73435
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 8b73435

Please sign in to comment.