shared_numpy
shared_numpy copied to clipboard
A simple library for creating shared memory numpy arrays
Help plz! My python version is 3.6.7 in anaconda , os is win10. I build the lib follow your readme.md,then I install it with` python setup.py install`.Finally, I run the...
Hi, thanks for the great works. I'm testing out this module with the `timing_comparison.py` script provided. Since this was only made for Python 3.6 and 3.7, and made a clone...
Python 3.8.3,numpy 1.22.4, ``` In [38]: import SharedArray as sa ...: --------------------------------------------------------------------------- RuntimeError Traceback (most recent call last) RuntimeError: module compiled against API version 0x10 but this version of numpy...
when I run this code: ` lobe_labe_map = snp.from_array(lobe_labe_map) lesion_mask = snp.from_array(lesion_mask) pixel_array = snp.from_array(pixel_array) spacing = snp.from_array(spacing) with Pool(5) as p: func = partial(map_function, lobe_labe_map, pixel_array, spacing, is_pnmonia_flag) res...