[Numpy-tickets] [NumPy] #432: cov segfaults when input is oriented incorrectly
NumPy
numpy-tickets@scipy....
Mon Apr 9 14:47:09 CDT 2007
#432: cov segfaults when input is oriented incorrectly
-------------------------------------+--------------------------------------
Reporter: dhuard | Owner: somebody
Type: defect | Status: reopened
Priority: normal | Milestone:
Component: Other | Version: devel
Severity: blocker | Resolution:
Keywords: matrix multiply failure |
-------------------------------------+--------------------------------------
Comment (by charris):
More:
In [9]: r = ones((1000,1))
In [10]: rt = ones((1,1000))
In [11]: dot(r,rt)
Illegal instruction
I suspect an output array of the right size is not being constructed:
In [2]: dot(eye(1000),eye(1000))
Illegal instruction
--
Ticket URL: <http://projects.scipy.org/scipy/numpy/ticket/432#comment:10>
NumPy <http://projects.scipy.org/scipy/numpy>
The fundamental package needed for scientific computing with Python.
More information about the Numpy-tickets
mailing list