-
Notifications
You must be signed in to change notification settings - Fork 912
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
Array dimension expansion causes segfault #72
Comments
Both |
Numpy 1.8.0 and Scipy 0.13. Looks like I should upgrade! |
The segfault happens on numpy 1.8.0, 1.8.1, and 1.8.2, but not 1.9.0. Maybe autograd should require numpy>=1.9 (or we could find the bug and work around it). |
Oh, numpy's setup.py does require >=1.9 already. |
Btw, the segfault happens in
|
Causes a seg fault. There are other ways to expand the dimensions of an array other than [:, None], but perhaps it should fail more gracefully in this case. I've also verified that it does the same thing with np.newaxis.
The text was updated successfully, but these errors were encountered: