Ticket #1106 (closed enhancement: fixed)
[with patch, positive review] speed up dense matrix comparison
| Reported by: | malb | Owned by: | mhansen |
|---|---|---|---|
| Priority: | major | Milestone: | sage-2.9.1 |
| Component: | linear algebra | Keywords: | |
| Cc: | Work issues: | ||
| Report Upstream: | Reviewers: | ||
| Authors: | Merged in: | ||
| Dependencies: | Stopgaps: |
Description
The general implementation right now is:
cdef int _cmp_c_impl(self, Element right) except -2:
return cmp(self._list(), right._list())
which has a huge memory overhead. This should be optimised. Also, Matrix_modn_dense should have a faster special cmp method.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

