用法:
property Series.data
数据的 gpu 缓冲区
- out:系列的 GPU 缓冲区。
返回:
例子:
>>> import cudf >>> series = cudf.Series([1, 2, 3, 4]) >>> series 0 1 1 2 2 3 3 4 dtype: int64 >>> series.data <cudf.core.buffer.Buffer object at 0x...> >>> series.data.to_host_array() array([1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], dtype=uint8)
相关用法
- Python cudf.Series.dt用法及代码示例
- Python cudf.Series.drop_duplicates用法及代码示例
- Python cudf.Series.div用法及代码示例
- Python cudf.Series.diff用法及代码示例
- Python cudf.Series.digitize用法及代码示例
- Python cudf.Series.dropna用法及代码示例
- Python cudf.Series.drop用法及代码示例
- Python cudf.Series.divide用法及代码示例
- Python cudf.Series.dot用法及代码示例
- Python cudf.Series.describe用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.data。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。