layer.to api support numpy.dtype and paddle.dtype #38018
Merged
Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Suggestions cannot be applied while viewing a subset of changes. Only one suggestion per line can be applied in a batch. Add this suggestion to a batch that can be applied as a single commit. Applying suggestions on deleted lines is not supported. You must change the existing code in this line in order to create a valid suggestion. Outdated suggestions cannot be applied. This suggestion has been applied or marked resolved. Suggestions cannot be applied from pending reviews. Suggestions cannot be applied on multi-line comments. Suggestions cannot be applied while the pull request is queued to merge. Suggestion cannot be applied right now. Please check back later.
PR types
New features
PR changes
APIs
Describe
Issue37932 反馈 layer.to 不支持
paddle.dtype类型的问题,新增了对这类型的支持。issue反馈的是release2.2版本情况,但是develop 分支与release2.2 相比,可以支持paddle.float16 这类的类型,却不支持np.float16 这类的类型。
其原因是develop分支合入的PR #36862 #37156 修改了类型转化为paddle.dtype的规则,没对numpy.dtype的类型转换为paddle.dtype类型。在此一并进行了修复。