Hello all, we have developed quite some compute kernels in C++ nowadays and I would like to call them from Python. We could expose the kernels on the Array/ChunkedArray classes themselves or as standalone functions (or as both). What would be the preferred way?
Also exposing them as standalone functions bears the question whether to have them in the top-level namespace (e.a. pyarrow.sum) or in a separate one (e.g. pyarrow.compute.sum). Uwe