Less - 1 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.
- Less1 → Less9 +15 -14
Less1 → Less9
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.
|
3
|
-
|
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
|
4
13
|
**Inputs**
|
5
14
|
* **A** (heterogeneous) - **T**:
|
6
|
-
|
15
|
+
Left input tensor for the logical operator.
|
7
16
|
* **B** (heterogeneous) - **T**:
|
8
|
-
|
17
|
+
Right input tensor for the logical operator.
|
9
18
|
**Outputs**
|
10
19
|
* **C** (heterogeneous) - **T1**:
|
11
20
|
Result tensor.
|
12
21
|
**Type Constraints**
|
13
22
|
* **T** in (
|
14
23
|
tensor(double),
|
15
24
|
tensor(float),
|
16
|
-
tensor(float16)
|
25
|
+
tensor(float16)
|
17
|
-
tensor(int16),
|
18
|
-
tensor(int32),
|
19
|
-
tensor(int64),
|
20
|
-
tensor(int8),
|
21
|
-
tensor(uint16),
|
22
|
-
tensor(uint32),
|
23
|
-
tensor(uint64),
|
24
|
-
tensor(uint8)
|
25
26
|
):
|
26
|
-
Constrain input
|
27
|
+
Constrain input to float tensors.
|
27
28
|
* **T1** in (
|
28
29
|
tensor(bool)
|
29
30
|
):
|
30
31
|
Constrain output to boolean tensor.
|