Size - 1 vs 13

Files changed (1) hide show
  1. Size1 → Size13 +1 -0
Size1 → Size13 RENAMED
@@ -1 +1 @@
1
1
  Takes a tensor as input and outputs a int64 scalar that equals to the total number of elements of the input tensor.
2
2
  **Inputs**
3
3
  * **data** (heterogeneous) - **T**:
4
4
  An input tensor.
5
5
  **Outputs**
6
6
  * **size** (heterogeneous) - **T1**:
7
7
  Total number of elements of the input tensor
8
8
  **Type Constraints**
9
9
  * **T** in (
10
+ tensor(bfloat16),
10
11
  tensor(bool),
11
12
  tensor(complex128),
12
13
  tensor(complex64),
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(string),
21
22
  tensor(uint16),
22
23
  tensor(uint32),
23
24
  tensor(uint64),
24
25
  tensor(uint8)
25
26
  ):
26
27
  Input tensor can be of arbitrary type.
27
28
  * **T1** in (
28
29
  tensor(int64)
29
30
  ):
30
31
  Constrain output to int64 tensor, which should be a scalar though.