本文简要介绍 python 语言中 numpy.may_share_memory
的用法。
确定两个数组是否可能共享内存
返回 True 并不一定意味着两个数组共享任何元素。这只是意味着他们可能。
默认情况下只检查 a 和 b 的内存边界。
- a, b: ndarray
输入数组
- max_work: 整数,可选
努力解决重叠问题。有关详细信息,请参阅
shares_memory
。may_share_memory
的默认设置是进行边界检查。
- out: bool
参数:
返回:
例子:
>>> np.may_share_memory(np.array([1,2]), np.array([5,8,9])) False >>> x = np.zeros([3, 4]) >>> np.may_share_memory(x[:,0], x[:,1]) True
相关用法
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy matrix.T用法及代码示例
- Python numpy matrix.I用法及代码示例
- Python numpy ma.diff用法及代码示例
- Python numpy mat用法及代码示例
- Python numpy ma.mask_rowcols用法及代码示例
- Python numpy ma.where用法及代码示例
- Python numpy ma.zeros_like用法及代码示例
- Python numpy ma.notmasked_contiguous用法及代码示例
- Python numpy ma.concatenate用法及代码示例
- Python numpy ma.apply_along_axis用法及代码示例
- Python numpy matrix.partition用法及代码示例
- Python numpy ma.compress_rowcols用法及代码示例
- Python numpy matrix.transpose用法及代码示例
- Python numpy ma.vstack用法及代码示例
- Python numpy ma.atleast_3d用法及代码示例
- Python numpy ma.count用法及代码示例
- Python numpy matrix.itemsize用法及代码示例
- Python numpy ma.fix_invalid用法及代码示例
- Python numpy ma.mean用法及代码示例
- Python numpy ma.argmax用法及代码示例
- Python numpy matrix.newbyteorder用法及代码示例
- Python numpy matrix.sort用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.may_share_memory。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。