- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
谢谢大家。
我想知道什么是 #include
的正确方法所有 numpy header 以及使用 Cython 和 C++ 解析 numpy 数组的正确方法是什么。下面是尝试:
// cpp_parser.h
#ifndef _FUNC_H_
#define _FUNC_H_
#include <Python.h>
#include <numpy/arrayobject.h>
void parse_ndarray(PyObject *);
#endif
// cpp_parser.cpp
#include "cpp_parser.h"
#include <iostream>
using namespace std;
void parse_ndarray(PyObject *obj) {
if (PyArray_Check(obj)) { // this throws seg fault
cout << "PyArray_Check Passed" << endl;
} else {
cout << "PyArray_Check Failed" << endl;
}
}
PyArray_Check
例程抛出段错误。
PyArray_CheckExact
不扔,但这不是我想要的。
# parser.pxd
cdef extern from "cpp_parser.h":
cdef void parse_ndarray(object)
# parser.pyx
import numpy as np
cimport numpy as np
def py_parse_array(object x):
assert isinstance(x, np.ndarray)
parse_ndarray(x)
setup.py
脚本是
# setup.py
from distutils.core import setup, Extension
from Cython.Build import cythonize
import numpy as np
ext = Extension(
name='parser',
sources=['parser.pyx', 'cpp_parser.cpp'],
language='c++',
include_dirs=[np.get_include()],
extra_compile_args=['-fPIC'],
)
setup(
name='parser',
ext_modules=cythonize([ext])
)
# run_test.py
import numpy as np
from parser import py_parse_array
x = np.arange(10)
py_parse_array(x)
最佳答案
快速修复 (阅读更多细节和更复杂的方法):
您需要初始化变量PyArray_API
通过调用 import_array()
在您使用 numpy-stuff 的每个 cpp 文件中:
//it is only a trick to ensure import_array() is called, when *.so is loaded
//just called only once
int init_numpy(){
import_array(); // PyError if not successful
return 0;
}
const static int numpy_initialized = init_numpy();
void parse_ndarraray(PyObject *obj) { // would be called every time
if (PyArray_Check(obj)) {
cout << "PyArray_Check Passed" << endl;
} else {
cout << "PyArray_Check Failed" << endl;
}
}
_import_array
,如果不成功则返回负数,以使用自定义错误处理。
See here用于定义
import_array
.
_import_array()/import_array()
只能在 Python 初始化后调用,即在
Py_Initialize()
之后被称为。这对于扩展来说总是如此,但如果嵌入了 python 解释器,则并非总是如此,因为
numpy_initialized
在
main
之前初始化- 开始。在这种情况下,不应使用“初始化技巧”,而应使用
init_numpy()
后调用
Py_Initialize()
.
PyArray_API
需要,看这个
SO-answer :为了能够将符号解析推迟到运行时,因此链接时不需要 numpy 的共享对象,并且不能在动态库路径上(python 的系统路径就足够了)。
PyArray_API
可以避免这种情况未定义为静态,而是定义为
extern
除一个翻译单元外,其他所有单元。对于那些翻译单位
NO_IMPORT_ARRAY
宏必须在
numpy/arrayobject.h
之前定义已经包括了。
NO_IMPORT_ARRAY
不得定义。
PY_ARRAY_UNIQUE_SYMBOL
我们将只得到一个静态符号,即对其他翻译单元不可见,因此链接器将失败。原因是:如果有两个库并且每个人都定义了一个
PyArray_API
那么我们将有一个符号的多重定义,链接器将失败,即我们不能同时使用这两个库。
PY_ARRAY_UNIQUE_SYMBOL
如
MY_FANCY_LIB_PyArray_API
在
numpy/arrayobject.h
的每个包含之前我们会有自己的
PyArray_API
-name,不会与其他库发生冲突。
numpy/arrayobject.h
//use_numpy.h
//your fancy name for the dedicated PyArray_API-symbol
#define PY_ARRAY_UNIQUE_SYMBOL MY_PyArray_API
//this macro must be defined for the translation unit
#ifndef INIT_NUMPY_ARRAY_CPP
#define NO_IMPORT_ARRAY //for usual translation units
#endif
//now, everything is setup, just include the numpy-arrays:
#include <numpy/arrayobject.h>
init_numpy_api.cpp
- 用于初始化全局的翻译单元
MY_PyArray_API
:
//init_numpy_api.cpp
//first make clear, here we initialize the MY_PyArray_API
#define INIT_NUMPY_ARRAY_CPP
//now include the arrayobject.h, which defines
//void **MyPyArray_API
#inlcude "use_numpy.h"
//now the old trick with initialization:
int init_numpy(){
import_array();// PyError if not successful
return 0;
}
const static int numpy_initialized = init_numpy();
use_numpy.h
每当您需要 numpy 时,它都会定义
extern void **MyPyArray_API
:
//example
#include "use_numpy.h"
...
PyArray_Check(obj); // works, no segmentation error
Py_Initialize()
必须已经被调用。
extra_compile_args=['-fPIC', '-O0', '-g'],
extra_link_args=['-O0', '-g'],
gdb --args python run_test.py
(gdb) run
--- Segmentation fault
(gdb) disass
0x00007ffff1d2a6d9 <+20>: mov 0x203260(%rip),%rax
# 0x7ffff1f2d940 <_ZL11PyArray_API>
0x00007ffff1d2a6e0 <+27>: add $0x10,%rax
=> 0x00007ffff1d2a6e4 <+31>: mov (%rax),%rax
...
(gdb) print $rax
$1 = 16
PyArray_Check
只是一个
define for :
#define PyArray_Check(op) PyObject_TypeCheck(op, &PyArray_Type)
&PyArray_Type
不知何故使用了
PyArray_API
的一部分未初始化(具有值
0
)。
cpp_parser.cpp
在预处理器之后(使用标志
-E
编译:
static void **PyArray_API= __null
...
static int
_import_array(void)
{
PyArray_API = (void **)PyCapsule_GetPointer(c_api,...
PyArray_AP
I 是静态的,通过
_import_array(void)
初始化,这实际上可以解释我在构建过程中收到的警告,即
_import_array()
已定义但未使用 - 我们没有初始化
PyArray_API
.
PyArray_API
是一个静态变量,它必须在每个编译单元中初始化,即 cpp - 文件。
import_array()
似乎是官方的方式。
关于python - PyArray_Check 使用 Cython/C++ 给出段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47026900/
c 不做边界检查。那么cython是如何检查是否编译成c的呢? %%cython --annotate cimport cython @cython.boundscheck(True) cpdef m
可以直接声明用于 Cython 构造函数? 据我了解,这是可能的: # Cython cdef int[3] li = [1, 2, 3] # C++ int[3] li = {1, 2, 3} 但
所以,如果你有一个头文件。 %%file test.h struct mystruct{ int i; int j; }; 然后你将它包装在 Cython 中: cdef extern fr
我正在构建一个独立于平台的 cython 项目,我想根据正在使用的编译器传递编译器参数。我可以猜测基于平台的编译器,或者假设它与用于 Python 的编译器相同,但不能保证匹配。通常我注入(injec
我使用诗歌构建我的 cython 包。我在所有函数和类中都有 NumPy 风格的文档字符串。我现在要做的是添加 Sphinx 自动文档并发布在 Read the Docs。 我已阅读此主题 How d
赛通 libcpp模块包含 priority_queue 的模板,这很好,除了一件事:我不能通过自定义比较器(或者,至少,我不知道如何)。 我需要这个,因为我需要 priority_queue做一个a
以下代码定义了一个简单的 Cython 函数(为方便起见,使用 Ipython 魔法)。 %load_ext cython %%cython def f(float x, float y=2):
我正在尝试使用 cython 进行复数计算。在示例代码中,我想计算复数的复指数函数。问题是我不知道如何将我的整数乘以虚数单位。python的虚数单位1.0j乘以cython执行时报错。 这是我的代码:
在这里停留在一些基本的 Cython 上 - 在 Cython 中定义字符串数组的规范且有效的方法是什么? 具体来说,我想定义一个定长常量数组char . (请注意,此时我不想引入 NumPy。) 在
是否有可能,如果是,如何确定 Cython 中整数数据类型的大小(以位为单位)? 我正在尝试做这样的事情,以获得整数大小: cdef WORD_BITS = 0 IF sizeof(unsigned
我只是想打印 cython 变量的地址,但我无法绕过错误消息: cdef int myvar print &myvar 抛出 Cannot convert 'int *' to Python obje
我有一个 C 头文件,它在宏中定义了一个函数。我需要从 Cython 调用它。有没有办法在 Cython 中使用宏并使其完全扩展?我已经有了 C 类型的参数。 我尝试像使用函数一样使用 cdef,我认
令人惊讶的是,我似乎找不到通过名称获取结构体元素的单个示例(无论是在网络上还是在 cython 示例中)。 所以我收到了一个指向 C 函数结构体的指针,并且想要一一访问这些元素并将它们重新打包到 py
我尝试围绕 C++ 库编写一个 Cython 包装器 http://primesieve.org/ 它包装了一个函数count。到目前为止,它可以正确安装 python setup.py instal
我正在尝试将 cython 模块 data.pyx 导入另一个 cython 模块 user.pyx。一切都编译得很好,但是当我尝试在 python 模块中调用 user.pyx 时,我收到错误“Im
更新:内存 View 获胜。Cython 使用类型化内存 View :0.0253449 特别感谢 lothario,他指出了几个关键的变化。 荒谬。当然现在的问题是,似乎不能对它们做太多算术(加法和
我有一个使用 memoryview 数组的 cython 模块,即... double[:,:] foo 我想使用多处理并行运行这个模块。但是我得到了错误: PicklingError: Can't
我正在尝试使用 Cython 加速 PEP 484 类型的 python 脚本。我想保持一些语义和可读性。 之前,我有一个 Flags = int def difference(f1: Flags,
这个问题已经有答案了: Collapse multiple submodules to one Cython extension (5 个回答) 已关闭 3 年前。 我在一个包中有多个 .py 文件
我已经能够在我的 .pyx 脚本上使用 cython 在 linux 上创建一个 .so 文件。我也可以成功地在我的 python 解释器上进行导入。 我的问题是如何在不使用 cython 的情况下将
我是一名优秀的程序员,十分优秀!