Skip to content

Commit

Permalink
Fix chunking !!!
Browse files Browse the repository at this point in the history
Bump version
  • Loading branch information
Mulan-94 committed Sep 13, 2022
1 parent 0dff42e commit 52f4e0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion smops/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = AUTHOR = """L Andati"""
__email__ = EMAIL = '[email protected]'
__version__ = VERSION = '0.1.0'
__version__ = VERSION = '0.1.1'
2 changes: 1 addition & 1 deletion smops/smooth.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 52f4e0b

Please sign in to comment.