Skip to content

Commit

Permalink
Fix incorrect function signature in header (apache#6172)
Browse files Browse the repository at this point in the history
vinx13 authored and trevor-m committed Sep 3, 2020
1 parent c796408 commit 4dc9d42
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
@@ -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.

0 comments on commit 4dc9d42

Please sign in to comment.