-
-
Notifications
You must be signed in to change notification settings - Fork 10.8k
Masked arrays with nested structured multidimensional dtypes inconsistent between data and mask #6760
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
Comments
This is probably due to a bug in |
gerritholl
added a commit
to gerritholl/numpy
that referenced
this issue
Dec 3, 2015
Fix numpy#6760. In ma.core._recursive_make_descr, consider the case where a subdtype does itself have named fields. This ensures the correct mask for an array like `ma.zeros(2, dtype([("A", "(2,2)i1,(2,2)i1", (2,2))]))`.
charris
added a commit
that referenced
this issue
Dec 3, 2015
…ay_maskfill BUG/TST: Fix #6760 by correctly describing mask on nested subdtypes
colbych
added a commit
to colbych/numpy
that referenced
this issue
Dec 6, 2015
* 'master' of git://github.com/numpy/numpy: (24 commits) BENCH: allow benchmark suite to run on Python 3 TST: test f2py, fallback on f2py2.7 etc., fixes numpy#6718 BUG: link cblas library if cblas is detected BUG/TST: Fix for numpy#6724, make numpy.ma.mvoid consistent with numpy.void BUG/TST: Fix numpy#6760 by correctly describing mask on nested subdtypes BUG: resizing empty array with complex dtype failed DOC: Add changelog for numpy#6734 and numpy#6748. Use integer division to avoid casting to int. Allow to change the maximum width with a class variable. Add some tests for mask creation with mask=True or False. Test that the mask dtype if MaskType before using np.zeros/ones BUG/TST: Fix for numpy#6729 ENH: Avoid memory peak and useless computations when printing a MaskedArray. ENH: Avoid memory peak when creating a MaskedArray with mask=True/False (numpy#6732). BUG: Readd fallback CBLAS detection on linux. TST: Fix travis-ci test for numpy wheels. MAINT: Localize variables only used with relaxed stride checking. BUG: Fix for numpy#6719 MAINT: enable Werror=vla in travis BUG: Include relevant files from numpy/linalg/lapack_lite in sdist. ...
jaimefrio
pushed a commit
to jaimefrio/numpy
that referenced
this issue
Mar 22, 2016
Fix numpy#6760. In ma.core._recursive_make_descr, consider the case where a subdtype does itself have named fields. This ensures the correct mask for an array like `ma.zeros(2, dtype([("A", "(2,2)i1,(2,2)i1", (2,2))]))`.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This may or may not be caused by the same problem as other
numpy.ma
-related issues. When a dtype contains a nested structured multidimensional sub-dtype, the dtype of the mask is inconsistent with the dtype of the data:For somewhat simpler dtypes, this problem does not occur:
This is bound to lead to problems somewhere. It does appear to lead to a failure when calling
Z.filled
, for example (IndexError: only integers, slices (
:), ellipsis (
...), numpy.newaxis (
None) and integer or boolean arrays are valid
), although it is also possible that thedtype
I constructed wreaks havoc elsewhere as well.The text was updated successfully, but these errors were encountered: