pybind11基本回调,不兼容的函数签名错误

时间:2017-11-24 14:06:20

标签: python c++ callback pybind11

我无法为我的生活获得一个非常基本的Python回调函数,以便在使用pybind11构建的扩展模块中工作。我试图效仿here,但我想我必须误解一些事情。

C ++代码如下:

#include <iostream>
#include <functional>
#include <pybind11/pybind11.h>

namespace py = pybind11;

void run_test(const std::function<int(int)>& f)
{
   // Call python function?
   int r = f(5);
   std::cout << "result: " << r << std::endl;
}

PYBIND11_PLUGIN(mymodule)
{
    py::module m("mymodule");
    m.def("run_test", &run_test);
    return m.ptr();
} 

使用此模块的Python代码是

import mymodule as mm

# Test function
def test(x):
  return 2*x

mm.run_test(test)

但是我收到了这个错误:

Traceback (most recent call last):
  File "test.py", line 7, in <module>
    mm.run_test(test)
TypeError: run_test(): incompatible function arguments. The following argument types are supported:
    1. (arg0: std::function<int (int)>) -> None

Invoked with: <function test at 0x2b506b282c80>

为什么它认为功能签名不匹配?我试图匹配这些例子,但我想我必须误解一些事情......

2 个答案:

答案 0 :(得分:0)

好吧,我误解了为什么在这个例子中使用了std :: function。这是一个更复杂的双回调,其中C ++函数被传递给Python然后回到C ++,以检查它是否在旅途中幸存下来。要只调用Python函数,需要使用py::object并将结果转换为C ++类型(如here所述):

void run_test(const py::object& f)
{
   // Call python function?
   py::object pyr = f(5);
   int r = pyr.cast<int>();
   std::cout << "result: " << r << std::endl;
}

答案 1 :(得分:0)

我相信您的问题是您忘记了updateGroups