aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/api_def/base_api/api_def_Pow.pbtxt
blob: 8ace5f3100ae0b448b80548908ab304878322f75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
op {
  graph_op_name: "Pow"
  summary: "Computes the power of one value to another."
  description: <<END
Given a tensor `x` and a tensor `y`, this operation computes \\(x^y\\) for
corresponding elements in `x` and `y`. For example:

```
# tensor 'x' is [[2, 2]], [3, 3]]
# tensor 'y' is [[8, 16], [2, 3]]
tf.pow(x, y) ==> [[256, 65536], [9, 27]]
```
END
}