在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):rapidsai/cudf开源软件地址(OpenSource Url):https://github.com/rapidsai/cudf开源编程语言(OpenSource Language):C++ 41.7%开源软件介绍(OpenSource Introduction):NOTE: For the latest stable README.md ensure you are on the Resources
OverviewBuilt based on the Apache Arrow columnar memory format, cuDF is a GPU DataFrame library for loading, joining, aggregating, filtering, and otherwise manipulating data. cuDF provides a pandas-like API that will be familiar to data engineers & data scientists, so they can use it to easily accelerate their workflows without going into the details of CUDA programming. For example, the following snippet downloads a CSV, then uses the GPU to parse it into rows and columns and run calculations: import cudf, requests
from io import StringIO
url = "https://github.com/plotly/datasets/raw/master/tips.csv"
content = requests.get(url).content.decode('utf-8')
tips_df = cudf.read_csv(StringIO(content))
tips_df['tip_percentage'] = tips_df['tip'] / tips_df['total_bill'] * 100
# display average tip by dining party size
print(tips_df.groupby('size').tip_percentage.mean()) Output:
For additional examples, browse our complete API documentation, or check out our more detailed notebooks. Quick StartPlease see the Demo Docker Repository, choosing a tag based on the NVIDIA CUDA version you’re running. This provides a ready to run Docker container with example notebooks and data, showcasing how you can utilize cuDF. InstallationCUDA/GPU requirements
CondacuDF can be installed with conda (miniconda, or the full Anaconda distribution) from the For # for CUDA 11.0
conda install -c rapidsai -c nvidia -c numba -c conda-forge \
cudf=22.06 python=3.9 cudatoolkit=11.0
# or, for CUDA 11.2
conda install -c rapidsai -c nvidia -c numba -c conda-forge \
cudf=22.06 python=3.9 cudatoolkit=11.2
For the nightly version of # for CUDA 11.0
conda install -c rapidsai-nightly -c nvidia -c numba -c conda-forge \
cudf python=3.9 cudatoolkit=11.0
# or, for CUDA 11.2
conda install -c rapidsai-nightly -c nvidia -c numba -c conda-forge \
cudf python=3.9 cudatoolkit=11.2 Note: cuDF is supported only on Linux, and with Python versions 3.8 and later. See the Get RAPIDS version picker for more OS and version info. Build/Install from SourceSee build instructions. ContributingPlease see our guide for contributing to cuDF. ContactFind out more details on the RAPIDS site Open GPU Data ScienceThe RAPIDS suite of open source software libraries aim to enable execution of end-to-end data science and analytics pipelines entirely on GPUs. It relies on NVIDIA® CUDA® primitives for low-level compute optimization, but exposing that GPU parallelism and high-bandwidth memory speed through user-friendly Python interfaces. Apache Arrow on GPUThe GPU version of Apache Arrow is a common API that enables efficient interchange of tabular data between processes running on the GPU. End-to-end computation on the GPU avoids unnecessary copying and converting of data off the GPU, reducing compute time and cost for high-performance analytics common in artificial intelligence workloads. As the name implies, cuDF uses the Apache Arrow columnar data format on the GPU. Currently, a subset of the features in Apache Arrow are supported. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论