diff --git a/tutorials/source_en/debug/dump.md b/tutorials/source_en/debug/dump.md index cabe663f95d17f776c63c3fb8dda16dd488fa83e..7b647dd3ed5d611246f31db4bbb42f07d5907e4d 100644 --- a/tutorials/source_en/debug/dump.md +++ b/tutorials/source_en/debug/dump.md @@ -155,7 +155,8 @@ MindSpore supports different Dump functionalities under various modes, as shown - "negative inf count": represents the number of `-Inf` elements in the tensor; - "positive inf count": represents the number of `+Inf` elements in the tensor; - "zero count": represents the number of zero elements in the tensor; - - "md5": represents the MD5 value of the tensor; + - "hash": represents the hash feature value of the tensor, whose algorithm is SHA1, so it can also be written as "hash:sha1"; + - "hash:md5": represents the MD5 value of the tensor; - "l2norm": represents L2Norm value of the tensor, supporting both device and host statistics. Except for those marked as supporting device statistics, other statistics can be collected only on the host. diff --git a/tutorials/source_zh_cn/debug/dump.md b/tutorials/source_zh_cn/debug/dump.md index 444a145e262989c41b3d6a681b3c581062725eb6..fab1345b5625bc7ee4bc215e38042a12e079e1de 100644 --- a/tutorials/source_zh_cn/debug/dump.md +++ b/tutorials/source_zh_cn/debug/dump.md @@ -155,7 +155,8 @@ MindSpore在不同后端下支持的Dump功能如下表所示: - "negative inf count": 表示Tensor中`-Inf`元素的个数; - "positive inf count": 表示Tensor中`+Inf`元素的个数; - "zero count": 表示Tensor中元素`0`的个数; - - "md5": 表示Tensor的MD5值; + - "hash": 表示Tensor的哈希特征值,目前默认SHA1算法,也可写作"hash:sha1"; + - "hash:md5": 表示Tensor的MD5值; - "l2norm": 表示Tensor的L2Norm值,支持在device统计和在host统计。 以上除了标记了支持device统计的,其他都仅支持在host统计。