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

Cross-link cudf.pandas profiler documentation. #17668

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 5 additions & 5 deletions docs/cudf/source/cudf_pandas/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ keyword arguments, cuDF is not able to provide GPU acceleration and
`cudf.pandas` will fall back to the CPU.

The most accurate way to assess which functions run on the GPU is to try
running the code while using the `cudf.pandas` profiling features. The
profiler will indicate which functions ran on GPU / CPU. To improve
performance, try to use only functionality that can run entirely on GPU.
This helps reduce the number of memory transfers needed to fallback to
CPU.
running the code while using the `cudf.pandas` [profiling
features](cudf-pandas-profiling). The profiler will indicate which functions
ran on GPU / CPU. To improve performance, try to use only functionality that
can run entirely on GPU. This helps reduce the number of memory transfers
needed to fallback to CPU.

## How can I improve performance of my workflow with `cudf.pandas`?

Expand Down
1 change: 1 addition & 0 deletions docs/cudf/source/cudf_pandas/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ with Pool(4) as pool:
...
```

(cudf-pandas-profiling)=
## Profiling `cudf.pandas`

`cudf.pandas` will attempt to use the GPU whenever possible and fall
Expand Down
Loading