GreaterOrEqual - 12 vs 16#

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.

GreaterOrEqual12 → GreaterOrEqual16 RENAMED
@@ -1 +1 @@
1
1
  Returns the tensor resulted from performing the greater_equal 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),
15
14
  tensor(double),
16
15
  tensor(float),
17
16
  tensor(float16),
18
17
  tensor(int16),
19
18
  tensor(int32),
20
19
  tensor(int64),
21
20
  tensor(int8),
22
21
  tensor(uint16),
23
22
  tensor(uint32),
24
23
  tensor(uint64),
25
24
  tensor(uint8)
26
25
  ):
27
26
  Constrain input types to all numeric tensors.
28
27
  * **T1** in (
29
28
  tensor(bool)
30
29
  ):
31
30
  Constrain output to boolean tensor.