gpt4 book ai didi

python - 是否可以从 C/C++ 调用 numba jited 函数?

转载 作者:行者123 更新时间:2023-12-04 12:01:37 33 4
gpt4 key购买 nike

我想在 python 中接口(interface) C++ 库,它将函数指针作为参数。我看起来可以用 PyEval_CallObject 在 C 中进行调用,但要进一步进行,我需要正确的签名(输入和输出参数的类型)。是否可以从具有指定签名的python返回回调?

另外我有点担心性能,所以我也看了python numba编译python函数的项目。如果可以在 C/C++ 中访问它以提高性能,我很感兴趣。

最佳答案

Numba 的 jited 函数是在内存中编译的,而不是在文件中。此函数具有常规 Pythonic 接口(interface),它是一个瘦包装器,可将 Python 参数转换为 C 类型,并像常规 C/Assembler 函数一样调用 jited 机器代码。
Numba 即时和按需编译 (jit) 函数,这意味着它在第一次调用时编译。此外 Numba 预编译具有不同参数类型的函数,即如果您传递一种类型 Numba 编译机器代码的一个实例,如果您传递另一种类型作为参数 Numba 编译另一个实例。编译后的代码被缓存,第二次调用时相同类型的参数使用机器代码的缓存版本。
Numba 的函数是常规的 Pythonic 函数。但是Numba对ctypes非常友好库,因此它支持转换为 ctypes' CFUNCTYPE它允许使用给定的固定 C 类型参数直接访问机器代码。
为了仅指定一种类型的参数,您必须编写类似

@numba.njit(numba.int64(numba.int64, numba.int64))
即将固定类型的参数传递给 @njit装饰器。
顺便说一句,您可以使用 @jit (较少优化,但几乎可以接受任何 Python 代码),或 @njit (更优化,但需要严格的代码编写规则)。
下面我为您创建了 C++ 代码示例,它从 C++ 调用 Numba 的 jited 函数。我展示了如何以三种方式调用它 - 1) 作为 C 函数使用 ctypes wrapper 。 2) 作为 Python 函数使用 PyObject_Call() . 3) 通过 @numba.cfunc装饰师和 .address属性(property),阅读它 here (@max9111 建议的第三个)。
如果在只有 C 类型时需要速度和最小的 CALL 开销,请选择带有 @cfunc 的解决方案,根据@max9111 的说法,它是最有效(最快)的解决方案(也是最短的实现)。基本上 .address属性只是给出了 C 函数的机器代码的直接地址,没有任何开销和准备。使用 pyfunc如果你有 Python 对象作为参数和/或你想传递不同 Python 类型的对象和/或如果你有 @jit (不是 @njit )和/或您不关心速度。
重要的提示!!! 我的代码没有清理任何东西,您应该通过 Py_XDECREF() 删除对所有对象的所有创建的引用。 .此外,我可能不会进行所有错误检查,您必须对每个可能返回错误的 Python C API 函数进行错误检查。我做了这两个简化,使代码更短,更易于理解,只是为了显示示例的要点。
Try it online!
#include <stdexcept>
#include <string>
#include <iostream>
#include <cstdint>

#include <Python.h>

#define ASSERT(cond) { if (!(cond)) throw std::runtime_error( \
"Assertion (" #cond ") failed at line " + std::to_string(__LINE__) + "!"); }
#define CH(cond) [&]{ auto r = (cond); if (PyErr_Occurred()) { PyErr_Print(); std::cerr << std::flush; \
throw std::runtime_error("PyAssertion (" #cond ") failed at line " + std::to_string(__LINE__) + "!"); } return r; }()

int main() {
try {
std::cout << "Wait..." << std::endl;
Py_Initialize();
auto globals = CH(PyDict_New()), locals = CH(PyDict_New());
CH(PyRun_String(R"(
import numba as nb, ctypes

@nb.njit(nb.int64(nb.int64, nb.int64))
def mul1(a, b):
return a * b

@nb.cfunc(nb.int64(nb.int64, nb.int64))
def mul2(a, b):
return a * b

cmul1 = ctypes.CFUNCTYPE(
ctypes.c_int64, ctypes.c_int64, ctypes.c_int64)(mul1)
addr1 = ctypes.cast(cmul1, ctypes.c_void_p).value
addr2 = mul2.address
)", Py_file_input, globals, locals));
//std::cout << CH(PyUnicode_AsUTF8AndSize(CH(PyObject_Str(locals)), nullptr)) << std::endl;
auto cfunc1 = (int64_t (*)(int64_t, int64_t))
CH(PyLong_AsUnsignedLongLong(CH(PyDict_GetItemString(locals, "addr1"))));
auto cfunc2 = (int64_t (*)(int64_t, int64_t))
CH(PyLong_AsUnsignedLongLong(CH(PyDict_GetItemString(locals, "addr2"))));
std::cout << "pyfunc: 3 * 5 = " << CH(PyUnicode_AsUTF8AndSize(
CH(PyObject_Str(CH(PyObject_Call(
CH(PyDict_GetItemString(locals, "mul1")), PyTuple_Pack(
2, PyLong_FromLongLong(3), PyLong_FromLongLong(5)), nullptr /* named args */
)))), nullptr)) << std::endl << std::flush;
std::cout << "cfunc1 (0x" << std::hex << uint64_t(cfunc1) << std::dec
<< "): 3 * 5 = " << cfunc1(3, 5) << std::endl << std::flush;
std::cout << "cfunc2 (0x" << std::hex << uint64_t(cfunc2) << std::dec
<< "): 3 * 5 = " << cfunc2(3, 5) << std::endl << std::flush;
ASSERT(Py_FinalizeEx() == 0);
return 0;
} catch (std::exception const & ex) {
std::cerr << "Exception: " << ex.what() << std::endl << std::flush;
return -1;
}
}
输出:
Wait...
pyfunc: 3 * 5 = 15
cfunc1 (0x7f5db072f080): 3 * 5 = 15
cfunc2 (0x7f5db05b2010): 3 * 5 = 15

关于python - 是否可以从 C/C++ 调用 numba jited 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32221418/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com