Constant - 12 vs 13#

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. Constant12 → Constant13 +0 -1
Constant12 → Constant13 RENAMED
@@ -1 +1 @@
1
1
  This operator produces a constant tensor. Exactly one of the provided attributes, either value, sparse_value,
2
2
  or value_* must be specified.
3
3
  **Attributes**
4
4
  * **sparse_value**:
5
5
  The value for the elements of the output tensor in sparse format.
6
6
  * **value**:
7
7
  The value for the elements of the output tensor.
8
8
  * **value_float**:
9
9
  The value for the sole element for the scalar, float32, output
10
10
  tensor.
11
11
  * **value_floats**:
12
12
  The values for the elements for the 1D, float32, output tensor.
13
13
  * **value_int**:
14
14
  The value for the sole element for the scalar, int64, output tensor.
15
15
  * **value_ints**:
16
16
  The values for the elements for the 1D, int64, output tensor.
17
17
  * **value_string**:
18
18
  The value for the sole element for the scalar, UTF-8 string, output
19
19
  tensor.
20
20
  * **value_strings**:
21
21
  The values for the elements for the 1D, UTF-8 string, output tensor.
22
22
  **Outputs**
23
23
  * **output** (heterogeneous) - **T**:
24
24
  Output tensor containing the same value of the provided tensor.
25
25
  **Type Constraints**
26
26
  * **T** in (
27
- tensor(bfloat16),
28
27
  tensor(bool),
29
28
  tensor(complex128),
30
29
  tensor(complex64),
31
30
  tensor(double),
32
31
  tensor(float),
33
32
  tensor(float16),
34
33
  tensor(int16),
35
34
  tensor(int32),
36
35
  tensor(int64),
37
36
  tensor(int8),
38
37
  tensor(string),
39
38
  tensor(uint16),
40
39
  tensor(uint32),
41
40
  tensor(uint64),
42
41
  tensor(uint8)
43
42
  ):
44
43
  Constrain input and output types to all tensor types.