From ab1b66d3f44cbe9e46ee4b3739248e21f4da17d9 Mon Sep 17 00:00:00 2001 From: mrava87 Date: Sat, 6 Jun 2020 17:09:32 +0200 Subject: [PATCH] Prepare for v0.2.0 --- CHANGELOG.md | 13 ++++++++++++- docs/source/changelog.rst | 16 ++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d05e6f5..a08ab59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ -# 0.1.0 +# 0.2.0 +* Added ``prescaled`` input parameter to ``pylops_distributed.waveeqprocessing.MDC`` + and ``pylops_distributed.waveeqprocessing.Marchenko`` +* Added ``dtype`` parameter to the ``FFT`` calls in the definition of the + ``pylops_distributed.waveeqprocessing.MDD`` operation. This ensure that the type + of the real part of ``G`` input is enforced to the output vectors of the + forward and adjoint operations. +* Changed handling of ``dtype`` in ``pylops_distributed.signalprocessing.FFT`` + to ensure that the type of the input vector is retained when applying forward and adjoint. +* Added ``PBS`` backend to ``pylops_distributed.utils.backend.dask`` + +# 0.1.0 * Added ``pylops_distributed.Restriction`` operator * Added ``pylops_distributed.signalprocessing.Convolve1D`` and ``pylops_distributed.signalprocessing.FFT2D`` operators diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 80c5e06..974bf55 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -4,6 +4,22 @@ Changelog ========= +Version 0.2.0 +------------- + +*Released on: 06/06/2020* + +* Added ``prescaled`` input parameter to :class:`pylops_distributed.waveeqprocessing.MDC` + and :class:`pylops_distributed.waveeqprocessing.Marchenko` +* Added ``dtype`` parameter to the ``FFT`` calls in the definition of the + :class:`pylops_distributed.waveeqprocessing.MDD` operation. This ensure that the type + of the real part of ``G`` input is enforced to the output vectors of the + forward and adjoint operations. +* Changed handling of ``dtype`` in :class:`pylops_distributed.signalprocessing.FFT` + to ensure that the type of the input vector is retained when applying forward and adjoint. +* Added ``PBS`` backend to :func:`pylops_distributed.utils.backend.dask` + + Version 0.1.0 -------------