Greater - 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.
- Greater7 → Greater9 +2 -2
Greater7 → Greater9
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Returns the tensor resulted from performing the greater logical operation
|
2
2
|
elementwise on the input tensors A and B (with Numpy-style broadcasting support).
|
3
3
|
This operator supports **multidirectional (i.e., Numpy-style) broadcasting**; for more details please check [Broadcasting in ONNX](https://github.com/onnx/onnx/blob/main/docs/Broadcasting.md).
|
4
4
|
### Inputs
|
5
5
|
- **A** (heterogeneous) - **T**:
|
6
6
|
First input operand for the logical operator.
|
7
7
|
- **B** (heterogeneous) - **T**:
|
8
8
|
Second input operand for the logical operator.
|
9
9
|
### Outputs
|
10
10
|
- **C** (heterogeneous) - **T1**:
|
11
11
|
Result tensor.
|
12
12
|
### Type Constraints
|
13
|
-
* **T** in ( tensor(double), tensor(float), tensor(float16) ):
|
13
|
+
* **T** in ( tensor(double), tensor(float), tensor(float16), tensor(int16), tensor(int32), tensor(int64), tensor(int8), tensor(uint16), tensor(uint32), tensor(uint64), tensor(uint8) ):
|
14
|
-
Constrain input to
|
14
|
+
Constrain input types to all numeric tensors.
|
15
15
|
* **T1** in ( tensor(bool) ):
|
16
16
|
Constrain output to boolean tensor.
|