Equal - 1 vs 7#
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.
- Equal1 → Equal7 +13 -4
Equal1 → Equal7
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Returns the tensor resulted from performing the equal 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(bool),
|
15
24
|
tensor(int32),
|
16
25
|
tensor(int64)
|
17
26
|
):
|
18
27
|
Constrain input to integral tensors.
|
19
28
|
* **T1** in (
|
20
29
|
tensor(bool)
|
21
30
|
):
|
22
31
|
Constrain output to boolean tensor.
|