And - 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.

Files changed (1) hide show
  1. And1 → And7 +13 -4
And1 → And7 RENAMED
@@ -1 +1 @@
1
1
  Returns the tensor resulted from performing the and logical operation
2
- elementwise on the input tensors A and B (with Numpy-style broadcasting support).
2
+ elementwise on the input tensors A and B.
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
4
13
  **Inputs**
5
14
  * **A** (heterogeneous) - **T**:
6
- First input operand for the logical operator.
15
+ Left input tensor for the logical operator.
7
16
  * **B** (heterogeneous) - **T**:
8
- Second input operand for the logical operator.
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
  ):
16
25
  Constrain input to boolean tensor.
17
26
  * **T1** in (
18
27
  tensor(bool)
19
28
  ):
20
29
  Constrain output to boolean tensor.