1

我试图用 cython 包装一个 C++ 类,它可以编译,但是当我导入扩展时,我得到了

ImportError: ./svd.so: undefined symbol: _ZTI5model

这是 C++ 头文件:

首先,“model.h”,model是svd的基类。

// model.h
#ifndef MODEL_H_
#define MODEL_H_

#include "common.h"
#include "Data.h"
class model {
protected:
    Data data;
public:
    model(Data& data);
    virtual float predict(uint uid, uint mid);
    // evaluate using testset and return final RMSE
    virtual float evaluate();
    // put predictions to file
    void output(string filename);
    virtual void onestep();
    virtual ~model();
};

#endif /* MODEL_H_ */

然后svd.h,svd继承自模型。

// svd.h
#ifndef SVD_H_
#define SVD_H_
#include "../common.h"
#include "../model.h"
#include "../Data.h"
#define K_NUM 50

namespace SVD{

class svd : model {

public:
    svd(Data &data);
    void init(uint max_step, float alpha1, \
              float alpha2,  float beta1, float beta2); 
    float predict(UidType uid, ItemType mid);
    float evaluate();
    void onestep();
    ~svd();
}; // end class svd

void initModel(uint max_step, float alpha1, float alpha2,  float beta1, float beta2);

};// end namespace svd

#endif /* SVD_H_ */

最后,pyx 文件

# distutils: language = c++
# distutils: sources = ../model.cpp ../models/svd.cpp ../common.cpp ../Data.cpp ../model.cpp

cdef extern from "../models/svd.h" namespace "SVD":
    cdef cppclass svd:
        pass

和我的 setup.py 文件

from distutils.core import setup
from Cython.Build import cythonize

setup(ext_modules = cythonize(
   ["svd.pyx"],                 # our Cython source
   language="c++",             # generate C++ code
))

我认为符号“模型”可能是 svd 的基类,

4

1 回答 1

0

您必须为基类中的虚拟方法提供一个实现,或者(如果该类应该是抽象的)将它们声明为纯的。参见例如这个问题

于 2013-04-09T14:49:10.703 回答