3

我正在开发一个模块,用于c inline基于swig. 为此,我想让numpy数组在C. 到目前为止,我使用了 C 类型,unsigned short但我想使用uint16_tfrom之类的类型stdint.h来保存我的模块遇到的任何编译器。

不幸的是,使用类型c++时 -functions 没有正确包装。stdint.h给出的错误是:_setc() takes exactly 2 arguments (1 given)。这意味着,该函数未包装以接受numpy数组。当我使用 eg 时,不会发生错误unsigned short

你有什么想法,我怎么能把 swig 地图numpy数组变成swig 地图数组stdint-types

interface.i不工作:

/* interface.i */
extern int __g();
%}
%include "stdint.i"
%include "numpy.i"

%init %{
import_array();
%}
%apply (uint16_t* INPLACE_ARRAY3, int DIM1) {(uint16_t* seq, int n1)};
extern int __g();

c++功能不工作:

#include "Python.h"
#include <stdio.h>
#include <stdint.h>
extern uint16_t* c;
extern int Dc;
extern int Nc[4];
void _setc(uint16_t *seq, int n1, int n2, int n3)
{
    c = seq;
    Nc[0] = n1;
    Nc[1] = n2;
    Nc[2] = n3;
}

interface.i在职的:

/* interface.i */
extern int __g();
%}
%include "stdint.i"
%include "numpy.i"

%init %{
import_array();
%}
%apply (unsigned short* INPLACE_ARRAY3, int DIM1) {(unsigned short* seq, int n1)};
extern int __g();

c++功能工作:

#include "Python.h"
#include <stdio.h>
#include <stdint.h>
extern unsigned short* c;
extern int Dc;
extern int Nc[4];
void _setc(unsigned short *seq, int n1, int n2, int n3)
{
    c = seq;
    Nc[0] = n1;
    Nc[1] = n2;
    Nc[2] = n3;
}
4

1 回答 1

1

哈哈,在我放弃并发布这个问题后几分钟,我找到了一些“解决方案”。

我编辑了numpy.i适合我的原因:我用第3044 行 ff 中的类型替换了旧C类型:stdint.h

[..]
/* Concrete instances of the %numpy_typemaps() macro: Each invocation
 * below applies all of the typemaps above to the specified data type.
 */
%numpy_typemaps(int8_t       , NPY_BYTE     , int)
%numpy_typemaps(uint8_t     , NPY_UBYTE    , int)
%numpy_typemaps(int16_t             , NPY_SHORT    , int)
%numpy_typemaps(uint16_t    , NPY_USHORT   , int)
%numpy_typemaps(int32_t               , NPY_INT      , int)
%numpy_typemaps(uint32_t      , NPY_UINT     , int)
%numpy_typemaps(long              , NPY_LONG     , int)
%numpy_typemaps(unsigned long     , NPY_ULONG    , int)
%numpy_typemaps(int64_t         , NPY_LONGLONG , int)
%numpy_typemaps(uint64_t, NPY_ULONGLONG, int)
%numpy_typemaps(float             , NPY_FLOAT    , int)
%numpy_typemaps(double            , NPY_DOUBLE   , int)
[..]

我想知道是否有人有比编辑更好的主意numpy.i

干杯乔臣

于 2015-12-16T15:39:00.143 回答