diff --git a/CHANGELOG.md b/CHANGELOG.md index 63584e5..f141788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.2.0 +- Added support for using CuPy arrays with PyLops-MPI. +- Introduced the `pylops_mpi.signalprocessing.MPIFredholm1` and `pylops_mpi.waveeqprocessing.MPIMDC` operators. +- Allowed the `UNSAFE_BROADCAST` partition to give users an option to handle overflow in broadcast scenarios. +- Added a dottest function to perform dot tests on PyLops-MPI operators. +- Created a tutorial for Multi-Dimensional Deconvolution (MDD). + # 0.1.0 - Adapted `pylops_mpi.optimization.cg` and `pylops_mpi.optimization.cgls` to handle `pylops_mpi.StackedDistributedArray`. - Added `pylops_mpi.MPIGradient` operator. diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index b9f2e9b..eb3c9d2 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,17 @@ Changelog ========= +Version 0.2.0 +------------- + +*Released on: 16/12/2024* + +* Added support for using CuPy arrays with PyLops-MPI. +* Introduced the :class:`pylops_mpi.signalprocessing.MPIFredholm1` and :class:`pylops_mpi.waveeqprocessing.MPIMDC` operators. +* Allowed the ``UNSAFE_BROADCAST`` partition to give users an option to handle overflow in broadcast scenarios. +* Added a dottest function to perform dot tests on PyLops-MPI operators. +* Created a tutorial for Multi-Dimensional Deconvolution (MDD). + Version 0.1.0 -------------