Less - 1 vs 7

Files changed (1) hide show
  1. Less1 → Less7 +4 -13
Less1 → Less7 RENAMED
@@ -1 +1 @@
1
1
  Returns the tensor resulted from performing the less logical operation
2
- elementwise on the input tensors A and B.
2
+ elementwise on the input tensors A and B (with Numpy-style broadcasting support).
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>_.
3
- If broadcasting is enabled, the right-hand-side argument will be broadcasted
4
- to match the shape of left-hand-side argument. See the doc of Add for a
5
- detailed description of the broadcasting rules.
6
-
7
- **Attributes**
8
-
9
- * **axis**:
10
- If set, defines the broadcast dimensions.
11
- * **broadcast**:
12
- Enable broadcasting
13
4
  **Inputs**
14
5
  * **A** (heterogeneous) - **T**:
15
- Left input tensor for the logical operator.
6
+ First input operand for the logical operator.
16
7
  * **B** (heterogeneous) - **T**:
17
- Right input tensor for the logical operator.
8
+ Second input operand for the logical operator.
18
9
  **Outputs**
19
10
  * **C** (heterogeneous) - **T1**:
20
11
  Result tensor.
21
12
  **Type Constraints**
22
13
  * **T** in (
23
14
  tensor(double),
24
15
  tensor(float),
25
16
  tensor(float16)
26
17
  ):
27
18
  Constrain input to float tensors.
28
19
  * **T1** in (
29
20
  tensor(bool)
30
21
  ):
31
22
  Constrain output to boolean tensor.