wesm / pandas2

Design documents and code for the pandas 2.0 effort.
https://pandas-dev.github.io/pandas2/
306 stars 41 forks source link

ufunc specifications #68

Open jreback opened 7 years ago

jreback commented 7 years ago

looks scipy encapsulated lots of function type things here: https://github.com/scipy/scipy/pull/6509

we eventually will want to enable things like this as well for ufunc like things that can be processed efficiently via the c++ code.

wesm commented 7 years ago

This is cool. I think we'll want to have a similar low level callable interface for functions that utilize pandas2's C++ API

jreback commented 7 years ago

yep. arguably this interface should exist even lower down the chain (e.g. in pyarrow) or utilities. maybe even get scipy to use it :>

wesm commented 7 years ago

Yeah, definitely. Having a native callable API for Arrow data in C++ (that writes output into preallocated memory, or uses one of the builder classes, e.g. for strings) would be very nice