Pow - 13 vs 15

Files changed (1) hide show
  1. Pow13 → Pow15 +1 -0
Pow13 → Pow15 RENAMED
@@ -1 +1 @@
1
1
  Pow takes input data (Tensor<T>) and exponent Tensor, and
2
2
  produces one output data (Tensor<T>) where the function f(x) = x^exponent,
3
3
  is applied to the data tensor elementwise.
4
4
  This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check Broadcasting in ONNX <https://github.com/onnx/onnx/blob/master/docs/Broadcasting.md>_.
5
5
  **Inputs**
6
6
  * **X** (heterogeneous) - **T**:
7
7
  First operand, base of the exponent.
8
8
  * **Y** (heterogeneous) - **T1**:
9
9
  Second operand, power of the exponent.
10
10
  **Outputs**
11
11
  * **Z** (heterogeneous) - **T**:
12
12
  Output tensor
13
13
  **Type Constraints**
14
14
  * **T** in (
15
15
  tensor(bfloat16),
16
16
  tensor(double),
17
17
  tensor(float),
18
18
  tensor(float16),
19
19
  tensor(int32),
20
20
  tensor(int64)
21
21
  ):
22
22
  Constrain input X and output types to float/int tensors.
23
23
  * **T1** in (
24
+ tensor(bfloat16),
24
25
  tensor(double),
25
26
  tensor(float),
26
27
  tensor(float16),
27
28
  tensor(int16),
28
29
  tensor(int32),
29
30
  tensor(int64),
30
31
  tensor(int8),
31
32
  tensor(uint16),
32
33
  tensor(uint32),
33
34
  tensor(uint64),
34
35
  tensor(uint8)
35
36
  ):
36
37
  Constrain input Y types to float/int tensors.