issue_comments: 680940858
This data as json
html_url | issue_url | id | node_id | user | created_at | updated_at | author_association | body | reactions | performed_via_github_app | issue |
---|---|---|---|---|---|---|---|---|---|---|---|
https://github.com/pydata/xarray/issues/4372#issuecomment-680940858 | https://api.github.com/repos/pydata/xarray/issues/4372 | 680940858 | MDEyOklzc3VlQ29tbWVudDY4MDk0MDg1OA== | 2448579 | 2020-08-26T15:10:05Z | 2020-08-26T15:10:05Z | MEMBER | Copying over that comment...
@shoyer could you please clarify what you meant? For example, this works with v0.16.0 but fails on master ``` python import operator import numpy as np import xarray as xr a = xr.DataArray(np.ones((10, 10)), dims=("a", "b")).chunk({"a": 2, "b": 1}) b = xr.DataArray(np.ones((10, 10)), dims=("a", "b")).chunk({"a": -1, "b": 4}) xr.apply_ufunc( operator.add, a, b, dask="parallelized", output_dtypes=[a.dtype], ).compute().equals(a.compute() + b.compute()) ``` |
{ "total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0 } |
684930038 |