Xor - 1 vs 7

Files changed (1) hide show
  1. Xor1 → Xor7 +4 -13
Xor1 → Xor7 RENAMED
@@ -1 +1 @@
1
1
  Returns the tensor resulted from performing the xor 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(bool)
24
15
  ):
25
16
  Constrain input to boolean tensor.
26
17
  * **T1** in (
27
18
  tensor(bool)
28
19
  ):
29
20
  Constrain output to boolean tensor.