Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Wang authored and markrogersjr committed Apr 24, 2019
1 parent 3d73dfb commit f7c7451
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/tvm/relay/attrs/nn.h
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ struct GlobalPool2DAttrs : public tvm::AttrsNode<GlobalPool2DAttrs> {
}
};

/*! \brief Attributes for global pool operator */
/*! \brief Attributes for adaptive pool operator */
struct AdaptivePool2DAttrs : public tvm::AttrsNode<AdaptivePool2DAttrs> {
Array<IndexExpr> output_size;
std::string layout;
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/relay/op/nn/nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def adaptive_max_pool2d(data,
layout="NCHW"):
r"""2D adaptive max pooling operator.
This operator takes data as input and does 2D average value calculation
This operator takes data as input and does 2D max value calculation
across each window represented by WxH.
Expand Down
2 changes: 1 addition & 1 deletion topi/python/topi/cuda/pooling.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def schedule_adaptive_pool(outs):
Parameters
----------
outs: Array of Tensor
The computation graph description of adaptive_poo
The computation graph description of adaptive_pool
in the format of an array of tensors.
Returns
Expand Down

0 comments on commit f7c7451

Please sign in to comment.