mindspore2022/docs/api/api_python/ops/mindspore.ops.Print.rst

25 lines
1.2 KiB
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.Print
===================
.. py:class:: mindspore.ops.Print
将输入Tensor或string进行打印输出。
默认打印在屏幕上。也可以保存在文件中,通过 `context` 设置 `print_file_path` 参数。一旦设置,输出将保存在指定文件中。通过函数 :func:`mindspore.parse_print` 可以重新加载数据。获取更多信息,请查看 :func:`mindspore.context.set_context`:func:`mindspore.parse_print`
.. note::
在PyNative模式下请使用Python print函数。在Graph模式下bool、int和float将被转换为Tensor进行打印str保持不变。
该方法用于代码调试当同时print大量数据时为了保证主进程不受影响可能会丢失一些数据这时推荐使用 `Summary` 功能,具体可查看
`Summary <https://www.mindspore.cn/mindinsight/docs/zh-CN/master/summary_record.html?highlight=summary#>`_.
**输入:**
- **input_x** (Union[Tensor, bool, int, float, str]) - Print的输入。支持多个输入用''分隔。
**输出:**
Tensor数据类型和shape与 `input_x` 相同。
**异常:**
- **TypeError** - `input_x` 不是Tensor、bool、int、float或str。