pydata / sparse

Sparse multi-dimensional arrays for the PyData ecosystem

Home Page:https://sparse.pydata.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

full_like does not work with GCXS

vttrifonov opened this issue · comments

When running full_like on an GCXS object it returns an error. See gist. The issue seems to be that compressed_axes is not in the arguments of full_like. Either add compressed_axes=None to arguments or instead of compressed_axes is None, use kwargs.get('compressed_axes', None) is None.

Thanks for the report, I'll look into this tentatively on the weekend.