A C implementation of the performance test added in #301. It's ~1000x faster than the python version of the same functions (0.000248 seconds for array_to_bytes, 0.000353 seconds for bytes_to_array), indicating that using Cython for this process could be exponentially faster than the current implementation.
A C implementation of the performance test added in #301. It's ~1000x faster than the python version of the same functions (0.000248 seconds for
array_to_bytes
, 0.000353 seconds forbytes_to_array
), indicating that using Cython for this process could be exponentially faster than the current implementation.