Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document how cuDF is pronounced #14753

Merged
merged 6 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## 📢 cuDF can now be used as a no-code-change accelerator for pandas! To learn more, see [here](https://rapids.ai/cudf-pandas/)!

cuDF is a GPU DataFrame library for loading joining, aggregating,
filtering, and otherwise manipulating data. cuDF leverages
cuDF (pronounced "KOO dee-eff") is a GPU DataFrame library
for loading, joining, aggregating, filtering, and otherwise
manipulating data. cuDF leverages
[libcudf](https://docs.rapids.ai/api/libcudf/stable/), a
blazing-fast C++/CUDA dataframe library and the [Apache
Arrow](https://arrow.apache.org/) columnar format to provide a
Expand Down
12 changes: 6 additions & 6 deletions docs/cudf/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ Welcome to the cuDF documentation!
:width: 300px
:align: center

**cuDF** is a Python GPU DataFrame library (built on the `Apache Arrow
<https://arrow.apache.org/>`_ columnar memory format) for loading, joining,
aggregating, filtering, and otherwise manipulating data. cuDF also 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.
**cuDF** (pronounced "KOO dee-eff") is a Python GPU DataFrame library (built
on the `Apache Arrow <https://arrow.apache.org/>`_ columnar memory format)
for loading, joining, aggregating, filtering, and otherwise manipulating data.
cuDF also 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.

``cudf.pandas`` is built on cuDF and accelerates pandas code on the
GPU. It supports 100% of the pandas API, using the GPU for
Expand Down
5 changes: 3 additions & 2 deletions docs/dask_cudf/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
Welcome to dask-cudf's documentation!
=====================================

Dask-cuDF is an extension library for the `Dask <https://dask.org>`__
parallel computing framework that provides a `cuDF
**Dask-cuDF** (pronounced "DASK KOO-dee-eff") is an extension
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Small request: we have a dash in KOO-dee-eff but not the other pronunciation guides (KOO dee-eff). Should we remove it here, or add it in the other two? I'm fine with either option.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added the dashes to the others, I think it makes sense to have them since they're the same word.

library for the `Dask <https://dask.org>`__ parallel computing
framework that provides a `cuDF
<https://docs.rapids.ai/api/cudf/stable/>`__-backed distributed
dataframe with the same API as `Dask dataframes
<https://docs.dask.org/en/stable/dataframe.html>`__.
Expand Down
Loading