-
Notifications
You must be signed in to change notification settings - Fork 28
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add test to assign chunked array to chunked array #130
base: master
Are you sure you want to change the base?
Add test to assign chunked array to chunked array #130
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) |
|
7a031a2
to
852ba69
Compare
The root cause is that |
xtensor-stack/xtensor#2256 should fix it. |
eea040c
to
8fa87d8
Compare
It fixes it. I'll remove the dependency on master in this PR when we get an xtensor release. |
8fa87d8
to
367f7dc
Compare
Let's fix it after the release. |
No description provided.