我正在尝试将numpy数组传递给某些C ++ Boost代码。运行PyArray_Max命令时,我的boost代码崩溃,没有任何错误输出。知道为什么会这样吗?
我使用命令“ python numpy_setup.py build_ext --inplace”来构建程序。所有文件应位于同一目录中。
根据337行的github上的此API代码,我正确使用了PyArray_Max命令:https://github.com/davidandrzej/pSSLDA/blob/master/FastLDA.c
Internet上没有其他代码示例(链接的API文件除外)显示如何使用PyArray_Max。
如果您运行我的代码(可以通过从命令行运行numpy_test.py来执行此操作),则控制台将显示“此处”,而不显示“最大返回!”。
Numpy_ext.cpp:
#include <boost/python/numpy.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
#include <boost/python.hpp>
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <stdint.h>
#include "Python.h"
#include "numpy/arrayobject.h"
namespace p = boost::python;
namespace np = boost::python::numpy;
//namespace PyObj = boost::python::object;
void numpy_info(PyObject * object)
{
PyArrayObject *array = reinterpret_cast<PyArrayObject*>(object);
Py_Initialize();
np::initialize();
PyObject *elem;
std::cout << "here" << std::endl;
elem = PyArray_Max(array, NPY_MAXDIMS , NULL); //NPY_MAXDIMS is the same as axis = None in python
std::cout << "Max returned!" << std::endl;
int value = PyLong_AsLong(elem);
std::cout << value << std::endl;
}
BOOST_PYTHON_MODULE(numpy_ext)
{
using namespace boost::python;
def("numpy_info", numpy_info);
}
numpy_test.py:
import numpy
import ctypes
a = numpy.array([2,3,1,0])
import numpy_ext
numpy_ext.numpy_info(a)
这是我正在使用的安装文件:
numpy_setup.py:
from distutils.core import setup
from distutils.extension import Extension
import numpy
numpy_ext = Extension(
'numpy_ext',
library_dirs=['C:\\local\\boost_1_69_0\\stage\\lib', 'C:\\Users\\jjones\\AppData\\Local\\Programs\\Python\\Python37\\Lib\\site-packages\\numpy\\core\\include\\numpy'],
sources=['numpy_ext.cpp'],
libraries=['libboost_python37-vc141-mt-gd-x64-1_69'],
)
setup(
name='numpy-ext',
version='0.1',
include_dirs=[numpy.get_include()],
ext_modules=[numpy_ext])