numpy.__数组命名空间信息__#
- class numpy.__array_namespace_info__[源代码]#
获取NumPy的数组API检查命名空间.
数组 API 检查命名空间定义了以下函数:
capabilities()
default_device()
default_dtypes()
dtypes()
devices()
更多详情请参见 https://data-apis.org/array-api/latest/API_specification/inspection.html.
- 返回:
- infoModuleType
NumPy 的数组 API 检查命名空间.
示例
>>> info = np.__array_namespace_info__() >>> info.default_dtypes() {'real floating': numpy.float64, 'complex floating': numpy.complex128, 'integral': numpy.int64, 'indexing': numpy.int64}
方法
返回一个数组 API 库功能的字典.
用于新 NumPy 数组的默认设备.
default_dtypes
(*[, device])用于新 NumPy 数组的默认数据类型.
devices
()NumPy 支持的设备.
dtypes
(*[, device, kind])NumPy 支持的数组 API 数据类型.