This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sh37211
Recipients sh37211
Date 2018-12-15.04:44:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544849056.09.0.788709270274.issue35507@psf.upfronthosting.co.za>
In-reply-to
Content
After creating this post on StackOverflow...
https://stackoverflow.com/questions/53757856/segmentation-fault-when-creating-multiprocessing-array
...it was suggested by one of the respondents that I file a bug report.


The following code produces segmentation faults on certain OSes (Linux: Ubuntu 16.04, 18.04 and Debian) but not others (Mac 10.13.4):

    import numpy as np
    from multiprocessing import sharedctypes

    a = np.ctypeslib.as_ctypes(np.zeros((224,224,3)))
    b = sharedctypes.RawArray(a._type_, a)

The segmentation fault occurs upon the creation of the multiprocessing.sharedctypes.RawArray. 

As a workaround, one can declare an intermediate variable, e.g. "a2", and write

    a = np.zeros((224,224,3))
    a2 = np.ctypeslib.as_ctypes(a)
    b = sharedctypes.RawArray(a2._type_, a2)

User kabanus seemed to think it was more likely to be an error with multiprocessing than with numpy. 

Using Anaconda python distribution, Python 3.5 and 3.6.  Have not tried 3.7 or 3.8 yet.
History
Date User Action Args
2018-12-15 04:44:16sh37211setrecipients: + sh37211
2018-12-15 04:44:16sh37211setmessageid: <1544849056.09.0.788709270274.issue35507@psf.upfronthosting.co.za>
2018-12-15 04:44:15sh37211linkissue35507 messages
2018-12-15 04:44:14sh37211create