Manjinder Singh
Manjinder Singh
Am I correct in reading that this is mainly an issue with documentation and not with any specific implementation of a backend? The documentation suggests passing password through partial pipeline,...
Hi Terri, can you explain to me the mathematical relationship between a round gauge and the number of rounds before increases? As far as I can tell, the number of...
I'm having similar problems: ``` data_to_pack = np.array([[0.5, 0.5], [0.29983, 0.29983], ]) packed_packet = msgpack.packb([38192.1234, data_to_pack], default=msgpack_numpy.encode) msgpack.unpackb(packed_packet, object_hook=msgpack_numpy.decode) ``` Error output: ``` descr = [tuple(tostr(t) if type(t) is bytes...
After a bit more debugging, this seems to be the root of the problem: https://github.com/lebedov/msgpack-numpy/blob/20c5e5b4730d910ce3b51433598f978bd5dbb12e/msgpack_numpy.py#L30 ``` return obj.data if obj.flags['C_CONTIGUOUS'] else obj.tobytes() ``` For this case, obj.flags['C_CONTIGUOUS'] is True, so...
Hi all, I'm thinking of looking into this. I'm wondering, do you folks have any example that produced compiler output with long names. I'm very new to this tool, so...