Constant - 9 vs 11¶
- Constant9 → Constant11 +5 -2
Constant9 → Constant11
RENAMED
@@ -1 +1 @@
|
|
1
|
+
A constant tensor. Exactly one of the two attributes, either value or sparse_value,
|
1
|
-
|
2
|
+
must be specified.
|
2
3
|
**Attributes**
|
4
|
+
* **sparse_value**:
|
5
|
+
The value for the elements of the output tensor in sparse format.
|
3
|
-
* **value
|
6
|
+
* **value**:
|
4
7
|
The value for the elements of the output tensor.
|
5
8
|
**Outputs**
|
6
9
|
* **output** (heterogeneous) - **T**:
|
7
10
|
Output tensor containing the same value of the provided tensor.
|
8
11
|
**Type Constraints**
|
9
12
|
* **T** in (
|
10
13
|
tensor(bool),
|
11
14
|
tensor(complex128),
|
12
15
|
tensor(complex64),
|
13
16
|
tensor(double),
|
14
17
|
tensor(float),
|
15
18
|
tensor(float16),
|
16
19
|
tensor(int16),
|
17
20
|
tensor(int32),
|
18
21
|
tensor(int64),
|
19
22
|
tensor(int8),
|
20
23
|
tensor(string),
|
21
24
|
tensor(uint16),
|
22
25
|
tensor(uint32),
|
23
26
|
tensor(uint64),
|
24
27
|
tensor(uint8)
|
25
28
|
):
|
26
29
|
Constrain input and output types to all tensor types.
|