From 7fa60874b89f7ea8b15ef4801818598e1d6e308a Mon Sep 17 00:00:00 2001 From: rohanbabbar04 Date: Wed, 18 Dec 2024 19:39:03 +0530 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 7 +++++++ docs/source/changelog.rst | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63584e58..f1417887 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 b9f2e9b2..eb3c9d29 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 -------------