如何处理Cython ValueError

时间:2011-08-01 19:35:12

标签: python cython

我对Cython扩展类型相当新,并且对运行期间抛出的以下与Cython相关的ValueError感到困惑:

ValueError: vrptwms.node.Node has the wrong size, try recompiling

Node类在vrptwms目录中的文件node.pxd和node.pyx中定义。前者的内容是

cdef class Node:
    """
    docstring
    """
    cdef public float x, y, demand
    cdef public float earliest_start, latest_start, servicetime
    cdef public int id

而后者的是(我暂时删除了所有希望追查问题的类型声明)

cdef class Node:
    """
    Represents either a customer or the depot.
    """
    # pylint: disable-msg=C0103, R0913

    def __init__(self,
                id_,
                x,
                y,
                demand,
                earliest_start,
                latest_start,
                servicetime):
        """
        docstring
        """
        self.x = float(x)
        self.y = float(y)
        self.demand = float(demand)
        self.earliest_start = float(earliest_start)
        self.latest_start = float(latest_start)
        self.servicetime = float(servicetime)
        self.id = int(id_)

    # some internal functions

然后,第三个文件problemreader.pyx包含节点类,方法如下:

from vrptwms.node cimport Node
from vrptwms.node import Node

编译没有任何问题。 setup.py包含

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

ext_modules = [Extension("route", ["fastroute.pyx"]),
            Extension("node", ["node.pyx", "node.pxd"]),
            Extension("problemreader", ["problemreader.pyx"]),
            ]

setup(
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modules,
)

我还尝试将node.pxd添加到问题阅读器扩展程序但没有成功。在以下生成的C代码

中引发了该问题
  __pyx_ptype_7vrptwms_4node_Node = __Pyx_ImportType("vrptwms.node", "Node", sizeof(struct __pyx_obj_7vrptwms_4node_Node), 1); if (unlikely(!__pyx_ptype_7vrptwms_4node_Node)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 9; __pyx_clineno = __LINE__; goto __pyx_L1_error;}

和原因

Traceback (most recent call last):
  File "./cli.py", line 16, in <module>
    from vrptwms.problemreader import ProblemReader
  File "node.pxd", line 9, in init problemreader (problemreader.c:4991)
    cdef class Node:
ValueError: vrptwms.node.Node has the wrong size, try recompiling

我多次删除了所有生成的.c,.so和.o文件,但无法解决问题。非常感谢任何提示(包括我可能错过的任何文档链接)。

编辑:如果我使用旧式相对导入(例如导入节点而不是vrptwms.node)并删除 init .py文件,则问题不会重现 - 所以源本身没有任何问题。我创建了一个很小的测试用例来重现这个问题:c_test.tar.gz(需要提取到PYTHONPATH上的目录)和一个几乎相同的情况,而不使用不能重现它的包:{{3} }。

2 个答案:

答案 0 :(得分:2)

Robert Bradshaw在cython-users邮件列表上提出了一些提示。底线是使用cython *.pyx手动(重新)编译.pyx文件,并运行原始安装脚本。还有一种更新的方法来编写CEP 201 - Distutils Preprocessing中描述的设置脚本,该脚本应该有所帮助,但在我目前的Cython 0.14.1设置中不起作用。

答案 1 :(得分:0)

我不明白你在这里做了什么:

from vrptwms.node cimport Node
from vrptwms.node import Node

当你导入两次同名时,第二次导入会覆盖第一次。