用 swig 包装 boost::ublas

发布于 2024-08-31 18:08:50 字数 1252 浏览 8 评论 0原文

我正在尝试在 numpy 和 boost::ublas 层之间传递数据。我 写了一个超薄包装器,因为 swig 无法解析 ublas' 标题正确。代码如下所示,

#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/lexical_cast.hpp>
#include <algorithm>
#include <sstream>
#include <string>

using std::copy;
using namespace boost;

typedef boost::numeric::ublas::matrix<double> dm;
typedef boost::numeric::ublas::vector<double> dv;

class dvector : public dv{
 public:
 dvector(const int rhs):dv(rhs){;};
 dvector();
 dvector(const int size, double* ptr):dv(size){
   copy(ptr, ptr+sizeof(double)*size, &(dv::data()[0]));
 }
 ~dvector(){}
};

带有 SWIG 界面,看起来就像

%apply(int DIM1, double* INPLACE_ARRAY1) {(const int size, double* ptr)}
class dvector{
 public:
 dvector(const int rhs);
 dvector();
 dvector(const int size, double* ptr);
       %newobject toString;
 char* toString();
       ~dvector();
};

我已经通过 gcc 4.3 和 vc++9.0 成功编译了它们。然而 当我简单地运行时,

a = dvector(array([1.,2.,3.]))

它会给我一个段错误。这是我第一次将 sigh 与 numpy 一起使用 并且对数据转换和之间没有充分的了解 内存缓冲区传递。有谁看到我有明显的东西 错过了?我尝试使用调试器进行跟踪,但它在 python.exe 的组件中崩溃了。我不知道这是一个问题还是我的简单包装的问题。任何事情都会受到赞赏。

I am trying to pass data around the numpy and boost::ublas layers. I
have written an ultra thin wrapper because swig cannot parse ublas'
header correctly. The code is shown below

#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/lexical_cast.hpp>
#include <algorithm>
#include <sstream>
#include <string>

using std::copy;
using namespace boost;

typedef boost::numeric::ublas::matrix<double> dm;
typedef boost::numeric::ublas::vector<double> dv;

class dvector : public dv{
 public:
 dvector(const int rhs):dv(rhs){;};
 dvector();
 dvector(const int size, double* ptr):dv(size){
   copy(ptr, ptr+sizeof(double)*size, &(dv::data()[0]));
 }
 ~dvector(){}
};

with the SWIG interface that looks something like

%apply(int DIM1, double* INPLACE_ARRAY1) {(const int size, double* ptr)}
class dvector{
 public:
 dvector(const int rhs);
 dvector();
 dvector(const int size, double* ptr);
       %newobject toString;
 char* toString();
       ~dvector();
};

I have compiled them successfully via gcc 4.3 and vc++9.0. However
when I simply run

a = dvector(array([1.,2.,3.]))

it gives me a segfault. This is the first time I use swigh with numpy
and not have fully understanding between the data conversion and
memory buffer passing. Does anyone see something obvious I have
missed? I have tried to trace through with a debugger but it crashed within the assmeblys of python.exe. I have no clue if this is a swig problem or of my simple wrapper. Anything is appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

舞袖。长 2024-09-07 18:08:50

您可能有兴趣查看 pyublas 模块。它无缝地在 numpy 数组和 ublas 数据类型之间进行转换,并且无需复制。

You may be interested in looking at the pyublas module. It does the conversion between numpy arrays and ublas data types seamlessly and without copying.

枯寂 2024-09-07 18:08:50

您可能想要替换

copy(ptr, ptr+sizeof(double)*size, &(dv::data()[0]));

通过

复制(ptr, ptr+size, &(dv::data()[0]));

请记住,在 C/C++ 中,对指针进行加法或减法会将其移动其所指向的数据类型大小的倍数。

最好的,

You may want to replace

copy(ptr, ptr+sizeof(double)*size, &(dv::data()[0]));

by

copy(ptr, ptr+size, &(dv::data()[0]));

Remember that in C/C++ adding or subtracting from a pointer moves it by a multiple of the size of the datatype it points to.

Best,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文