设计
规格
API
API映射
迁移指南
FAQ
RELEASE NOTES
检查输入对象是否为目标类型的实例。
inst (Any Object) - 要检查的实例。只允许为常量。
type_ (mindspore.dtype) - 目标类型。只允许为常量。
bool,检查结果。
TypeError - 如果 type_ 不是一种类型。
Ascend GPU CPU
Ascend
GPU
CPU
样例:
>>> inst = 1 >>> output = ops.IsInstance()(inst, mindspore.int32) >>> print(output) False