Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix broadcast ops descriptions (#21087)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekkuncer committed Jul 7, 2022
1 parent 84b1626 commit 26243ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/operator/tensor/elemwise_binary_broadcast_op_extended.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Example::
y = [[ 0.],
[ 1.]]
broadcast_power(x, y) = [[ 2., 2., 2.],
[ 4., 4., 4.]]
broadcast_power(x, y) = [[ 1., 1., 1.],
[ 1., 1., 1.]]
)code" ADD_FILELINE)
.set_attr<FCompute>("FCompute<cpu>", BinaryBroadcastCompute<cpu, mshadow_op::power>)
Expand Down Expand Up @@ -112,7 +112,7 @@ Example::
y = [[ 0.],
[ 1.]]
broadcast_maximum(x, y) = [[ 0., 0., 0.],
broadcast_minimum(x, y) = [[ 0., 0., 0.],
[ 1., 1., 1.]]
)code" ADD_FILELINE)
Expand Down

0 comments on commit 26243ee

Please sign in to comment.