判断输入的数据类型,是否为数字类型。
bool IsNumberType(const DataType dtype)
参数 |
输入/输出 |
说明 |
---|---|---|
dtype |
输入 |
输入数据类型,判断该类型是否为数字类型。 数字类型包括:Complex128、Complex64、Float64、Float32、Float16、Int16、Int32、Int64、Int8、QInt32、QInt8、QUInt8、UInt16、UInt32、UInt64、UInt8、BFloat16。 |
输入数据类型为数字类型时,返回true,否则返回false。
无
1 2 3 4 5 6 | // 判断dtype不为数字类型时,返回 void Func(const DataType dtype) { if (!IsNumberType(dtype)) { return; } } |