Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Update README to reflect deprecation of cuSignal #588

Merged
merged 4 commits into from
Sep 18, 2023
Merged
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
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/>&nbsp;cuSignal</div>

# Deprecation Notice
RAPIDS v23.08 is the last formal release for cuSignal. Starting in 2019, cuSignal strived to provide a simple to use and highly performant library for signal processing developers working in Python. With over 400,000 total Anaconda downloads, we built an incredible community together. We are pleased to announce that much of the cuSignal codebase is moving to [CuPy](https://cupy.dev) and is highly aligned with CuPy's goal to GPU-accelerate the NumPy and SciPy ecosystems. By moving our work to CuPy, we allow developers to use a single library for signal processing (and more!) while also reducing software dependencies.

To continue your journey with GPUs, Python, and Signal Processing, please:
- [Download CuPy](https://docs.cupy.dev/en/stable/install.html)
- Visit `cupyx.scipy.signal` [source code](https://github.com/cupy/cupy/tree/main/cupyx/scipy/signal)
Copy link
Member

@leofang leofang Aug 18, 2023

Choose a reason for hiding this comment

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

Suggested change
- Visit `cupyx.scipy.signal` [source code](https://github.com/cupy/cupy/tree/main/cupyx/scipy/signal)
- Visit `cupyx.scipy.signal` [source code](https://github.com/cupy/cupy/tree/main/cupyx/scipy/signal) and [documentation](https://docs.cupy.dev/en/latest/reference/scipy_signal.html)

Copy link
Member Author

Choose a reason for hiding this comment

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

Great suggestion @leofang. I'll include this as a new bullet point in the "what's next" list.

- Read CuPy's `signal` module [documentation](https://docs.cupy.dev/en/latest/reference/scipy_signal.html)

The offical deprecation announcement can be found [here](https://docs.rapids.ai/notices/rsn0032/)

***
**cuSignal** is a GPU-accelerated signal processing library in Python that is both based on and extends the [SciPy Signal](https://github.com/scipy/scipy/tree/master/scipy/signal) API. Notably, cuSignal:
- Delivers orders-of-magnitude speedups over CPU with a familiar API
- Supports a zero-copy connection to popular Deep Learning frameworks like PyTorch, Tensorflow, and Jax
Expand Down