1 Oct 2010 23:00
Re: [Cython] cython compiler crash
Problem was a typo: cdef np.ndarray[np, ndim=1] outreal = numpy.zeros_like(inreal) should have been: cdef np.ndarray[np.float_t, ndim=1] outreal = numpy.zeros_like(inreal) Which caused the compiler to crash. On Fri, Oct 1, 2010 at 4:36 PM, Lisandro Dalcin <dalcinl@...> wrote: > On 1 October 2010 15:17, Vineet Jain <vinjvinj@...> wrote: >> Last night while trying out the following cython example: >> >> http://dpinte.wordpress.com/2010/04/22/interfacing-ta-lib-with-cython/ >> >> I got the following crash in the cython compiler (cython version 0.13): >> >> Compiler crash traceback from this point on: >> File "Visitor.py", line 179, in >> Cython.Compiler.Visitor.TreeVisitor.visitchild >> (/tmp/easy_install-fEGaFj/Cython-0.13/Cython/Compiler/Visitor.c:3407) >> File "Visitor.py", line 28, in >> Cython.Compiler.Visitor.BasicVisitor.visit >> (/tmp/easy_install-fEGaFj/Cython-0.13/Cython/Compiler/Visitor.c:1178) >> File "/usr/local/lib/python2.6/dist-packages/Cython-0.13-py2.6-linux-x86_64.egg/ >> Cython/Compiler/Buffer.py", >> line 106, in visit_FuncDefNode >> self.handle_scope(node, node.local_scope) >> File "/usr/local/lib/python2.6/dist-packages/Cython-0.13-py2.6-linux-x86_64.egg/(Continue reading)
RSS Feed