Div - 7 vs 13¶
- Div7 → Div13 +1 -0
Div7 → Div13
RENAMED
@@ -1 +1 @@
|
|
1
1
|
Performs element-wise binary division (with Numpy-style broadcasting support).
|
2
2
|
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
3
|
**Inputs**
|
4
4
|
* **A** (heterogeneous) - **T**:
|
5
5
|
First operand.
|
6
6
|
* **B** (heterogeneous) - **T**:
|
7
7
|
Second operand.
|
8
8
|
**Outputs**
|
9
9
|
* **C** (heterogeneous) - **T**:
|
10
10
|
Result, has same element type as two inputs
|
11
11
|
**Type Constraints**
|
12
12
|
* **T** in (
|
13
|
+
tensor(bfloat16),
|
13
14
|
tensor(double),
|
14
15
|
tensor(float),
|
15
16
|
tensor(float16),
|
16
17
|
tensor(int32),
|
17
18
|
tensor(int64),
|
18
19
|
tensor(uint32),
|
19
20
|
tensor(uint64)
|
20
21
|
):
|
21
22
|
Constrain input and output types to high-precision numeric tensors.
|