我正在开发一个模块,用于c inline
基于swig
. 为此,我想让numpy
数组在C
. 到目前为止,我使用了 C 类型,unsigned short
但我想使用uint16_t
from之类的类型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;
}