我有一些生成和操作矩阵数组的 C++ 代码Eigen
。最后我想在 python 中使用这些矩阵,并认为这可能是pybind11
.
基本上我想要在 python 中返回的是两个嵌套列表/numpy 数组 mat_a(I, 4, 4)
和mat_b(J, K, 4, 4)
. 因为我必须在 C++ 中做很多线性代数的东西,所以我想使用 Eigen,我使用的数据结构是 std::array<std::array<Eigen::Matrix4f, 2>, 3>>> mat_b // for J=3, K=2
. 现在的问题是如何有效地将它传递给python?
此外,我想对多个输入x = [x_0, x_1, ..., x_N] 执行这些计算,结果mat_a(N, I, 4, 4)
超出mat_b(N, J, K, 4, 4)
预期。每个计算都是独立的,但我认为用 C++x_i
重写这个循环可能会更快。x_i
另一方面,如果我们在 C++ 中只有固定大小的数组,任务会变得更容易,这个循环也可以转移到 python。
这是我的问题的一些虚拟代码(I=5,J=3,K=2):
// example.cpp
#include <pybind11/pybind11.h>
#include <pybind11/eigen.h>
#include <pybind11/stl.h>
#include <pybind11/functional.h>
#include <pybind11/stl_bind.h>
#include <array>
#include <vector>
#include <Eigen/Dense>
Eigen::Matrix4f get_dummy(){
Eigen::Matrix4f mat_a;
mat_a << 1, 2, 3, 4,
5, 6, 7, 8,
9, 8, 7, 6,
5, 4, 3, 2;
return mat_a;
}
std::pair< std::vector<std::array<Eigen::Matrix4f, 5> >,
std::vector<std::array<std::array<Eigen::Matrix4f, 2>, 3> > > get_matrices(std::vector<float> & x){
std::vector<std::array<Eigen::Matrix4f, 5> > mat_a(x.size());
std::vector< std::array< std::array< Eigen::Matrix4f, 2>, 3> > mat_b(x.size());
// for (u_int i=0; i< x.size(); i++)
// do_stuff(x[i], mat_a[i], mat_b[i]);
mat_a[0][0] = get_dummy();
return std::make_pair(mat_a, mat_b);
}
PYBIND11_MODULE(example, m) {
m.def("get_dummy", &get_dummy, pybind11::return_value_policy::reference_internal);
m.def("get_matrices", &get_matrices, pybind11::return_value_policy::reference_internal);
}
我通过以下方式编译代码:
c++ -O3 -Wall -shared -std=c++14 -fPIC `python3 -m pybind11 --includes` example.cpp -o example`python3-config --extension-suffix`
宝慕林4294392
至尊宝的传说
相关分类