- Notifications
You must be signed in to change notification settings - Fork28
Add test to assign chunked array to chunked array#130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Looks like we can't assign an |
OK so this is because: // not correct:auto a = xt::arange(4 *4).reshape({4,4});// correct:auto a = xt::arange(4 *4);a.reshape({4,4}); This is a different behavior than NumPy, where you do: a=np.arange(4*4).reshape(4,4) |
|
The root cause is that |
xtensor-stack/xtensor#2256 should fix it. |
eea040c to8fa87d8Compare
It fixes it. I'll remove the dependency on master in this PR when we get an xtensor release. |
8fa87d8 to367f7dcCompareLet's fix it after the release. |
No description provided.