Max - 12 vs 13

Files changed (1) hide show
  1. Max12 → Max13 +1 -0
Max12 → Max13 RENAMED
@@ -1 +1 @@
1
1
  Element-wise max of each of the input tensors (with Numpy-style broadcasting support).
2
2
  All inputs and outputs must have the same data type.
3
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>_.
4
4
  **Inputs**
5
5
  Between 1 and 2147483647 inputs.
6
6
  * **data_0** (variadic, heterogeneous) - **T**:
7
7
  List of tensors for max.
8
8
  **Outputs**
9
9
  * **max** (heterogeneous) - **T**:
10
10
  Output tensor.
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(int16),
17
18
  tensor(int32),
18
19
  tensor(int64),
19
20
  tensor(int8),
20
21
  tensor(uint16),
21
22
  tensor(uint32),
22
23
  tensor(uint64),
23
24
  tensor(uint8)
24
25
  ):
25
26
  Constrain input and output types to numeric tensors.