From 52f4e0b62af29c563a304cb1a74928cde7f1f23d Mon Sep 17 00:00:00 2001 From: Lexy Andati Date: Tue, 13 Sep 2022 17:48:48 +0200 Subject: [PATCH] Fix chunking !!! Bump version --- smops/__init__.py | 2 +- smops/smooth.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/smops/__init__.py b/smops/__init__.py index debed62..70e4100 100644 --- a/smops/__init__.py +++ b/smops/__init__.py @@ -2,4 +2,4 @@ __author__ = AUTHOR = """L Andati""" __email__ = EMAIL = 'landati@duck.com' -__version__ = VERSION = '0.1.0' +__version__ = VERSION = '0.1.1' diff --git a/smops/smooth.py b/smops/smooth.py index 91ca733..b28d953 100644 --- a/smops/smooth.py +++ b/smops/smooth.py @@ -248,7 +248,7 @@ def interp_cube(model, wsums, infreqs, outfreqs, ref_freq, spectral_poly_order): comps = da.from_array( np.linalg.solve(hess_comps, dirty_comps), - chunks={0: 1, 1:"auto", 2:"auto"}) + chunks="auto") w = outfreqs/ref_freq