PRelu - 7 vs 9#
Next section compares an older to a newer version of the same operator after both definition are converted into markdown text. Green means an addition to the newer version, red means a deletion. Anything else is unchanged.
- PRelu7 → PRelu9 +2 -6
PRelu7 → PRelu9
RENAMED
@@ -1 +1 @@
|
|
1
1
|
PRelu takes input data (Tensor<T>) and slope tensor as input, and produces one
|
2
2
|
output data (Tensor<T>) where the function f(x) = slope * x for x < 0,
|
3
3
|
f(x) = x for x >= 0., is applied to the data tensor elementwise.
|
4
4
|
This operator supports **unidirectional broadcasting** (tensor slope should be unidirectional broadcastable to input tensor X); 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
|
Input tensor
|
8
8
|
* **slope** (heterogeneous) - **T**:
|
9
9
|
Slope tensor. The shape of slope can be smaller then first input X;
|
10
10
|
if so, its shape must be unidirectional broadcastable to X
|
11
11
|
**Outputs**
|
12
12
|
* **Y** (heterogeneous) - **T**:
|
13
13
|
Output tensor (same size as X)
|
14
14
|
**Type Constraints**
|
15
15
|
* **T** in (
|
16
16
|
tensor(double),
|
17
17
|
tensor(float),
|
18
|
-
tensor(float16)
|
18
|
+
tensor(float16)
|
19
|
-
tensor(int32),
|
20
|
-
tensor(int64),
|
21
|
-
tensor(uint32),
|
22
|
-
tensor(uint64)
|
23
19
|
):
|
24
|
-
Constrain input and output types to float
|
20
|
+
Constrain input and output types to float tensors.
|