| 47 | constexpr auto kSignatureIntermediateType = "bigint"; |
| 48 | |
| 49 | pybind11::object** asIntermediatePtrTypes(BaseVector& vec) { |
| 50 | auto* flatVector = vec.as<FlatVector<IntermediateFlatType>>(); |
| 51 | BOLT_CHECK(flatVector != nullptr); |
| 52 | auto* rawValues = flatVector->mutableRawValues(); |
| 53 | return reinterpret_cast<pybind11::object**>(rawValues); |
| 54 | } |
| 55 | |
| 56 | void accumulate(pybind11::object& lhs, pybind11::object rhs) { |
| 57 | bolt::python::pyTry<void>( |
no test coverage detected