Skip to content

Commit

Permalink
[DOC] Remove out of date section from cudf.pandas docs (rapidsai#16697)
Browse files Browse the repository at this point in the history
Proxy numpy arrays now instances of real numpy arrays (rapidsai#16601), so libraries (eg. numba, torch) which utilize NumPy's C API should now be able to use proxy arrays. This PR updates the cudf.pandas documentation to reflect this.

Authors:
  - Matthew Murray (https://github.com/Matt711)

Approvers:
  - Matthew Roeschke (https://github.com/mroeschke)

URL: rapidsai#16697
  • Loading branch information
Matt711 authored Sep 6, 2024
1 parent f97f61c commit aa08fdb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions docs/cudf/source/cudf_pandas/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,6 @@ There are a few known limitations that you should be aware of:
[value mutability](https://pandas.pydata.org/pandas-docs/stable/getting_started/overview.html#mutability-and-copying-of-data)
of Pandas objects is not always guaranteed. You should follow the
pandas recommendation to favor immutable operations.
- `cudf.pandas` can't currently interface smoothly with functions that
interact with objects using a C API (such as the Python or NumPy C
API)
- For example, you can write `torch.tensor(df.values)` but not
`torch.from_numpy(df.values)`, as the latter uses the NumPy C API
- For performance reasons, joins and join-based operations are not
currently implemented to maintain the same row ordering as standard
pandas
Expand Down

0 comments on commit aa08fdb

Please sign in to comment.