Greater - 9 vs 13¶
- Greater9 → Greater13 +1 -0
Greater9 → Greater13
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/master/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
13
|
* **T** in (
|
14
|
+
tensor(bfloat16),
|
14
15
|
tensor(double),
|
15
16
|
tensor(float),
|
16
17
|
tensor(float16),
|
17
18
|
tensor(int16),
|
18
19
|
tensor(int32),
|
19
20
|
tensor(int64),
|
20
21
|
tensor(int8),
|
21
22
|
tensor(uint16),
|
22
23
|
tensor(uint32),
|
23
24
|
tensor(uint64),
|
24
25
|
tensor(uint8)
|
25
26
|
):
|
26
27
|
Constrain input types to all numeric tensors.
|
27
28
|
* **T1** in (
|
28
29
|
tensor(bool)
|
29
30
|
):
|
30
31
|
Constrain output to boolean tensor.
|