forked from mindspore-Ecosystem/mindspore
20 lines
602 B
ReStructuredText
20 lines
602 B
ReStructuredText
mindspore.ops.Cast
|
||
===================
|
||
|
||
.. py:class:: mindspore.ops.Cast
|
||
|
||
返回指定新数据类型后的Tensor
|
||
|
||
**输入:**
|
||
|
||
- **input_x** (Union[Tensor, Number]) - 输入要进行数据类型转换的Tensor,其shape为 :math:`(x_1, x_2, ..., x_R)` 。
|
||
- **type** (dtype.Number) - 指定转换的数据类型。仅支持常量值。
|
||
|
||
**输出:**
|
||
|
||
Tensor,其shape与 `input_x` 相同,即 :math:`(x_1, x_2, ..., x_R)` 。
|
||
|
||
**异常:**
|
||
|
||
- **TypeError** - `input_x` 既不是Tensor也不是Number。
|
||
- **TypeError** - `type` 不是Number。 |