#15104: Special case modn_dense matrix operations to improve performance
-------------------------------------+-------------------------------------
       Reporter:  nbruin             |        Owner:
           Type:  enhancement        |       Status:  needs_work
       Priority:  major              |    Milestone:  sage-6.2
      Component:  linear algebra     |   Resolution:
       Keywords:                     |    Merged in:
        Authors:  Nils Bruin, Simon  |    Reviewers:
  King                               |  Work issues:  regression in
Report Upstream:  N/A                |  right_kernel_matrix
         Branch:                     |       Commit:
  u/SimonKing/ticket/15104           |  0f008f9266e3ed6fbd67e7f3d357474825bdb160
   Dependencies:                     |     Stopgaps:
-------------------------------------+-------------------------------------
Changes (by {'newvalue': u'Nils Bruin, Simon King', 'oldvalue': u'Nils Bruin'}):

 * work_issues:   => regression in right_kernel_matrix
 * author:  Nils Bruin => Nils Bruin, Simon King


Comment:

 Concerning the issue raised by Travis in comment:5:

 With the previous branch, I get
 {{{
 sage: M=matrix(GF(5),6,6,range(36))
 sage: %timeit M.right_kernel_matrix(basis='computed')
 1000 loops, best of 3: 370 us per loop
 sage: %timeit M.right_kernel_matrix(basis='pivot')
 1000 loops, best of 3: 378 us per loop
 sage: %timeit M.transpose()
 100000 loops, best of 3: 9.87 us per loop
 sage: %timeit M.stack(M)
 10000 loops, best of 3: 39.1 us per loop
 sage: %timeit M.submatrix(1,1)
 10000 loops, best of 3: 30.9 us per loop
 }}}
 With the new commits, I get
 {{{
 sage: M=matrix(GF(5),6,6,range(36))
 sage: %timeit M.right_kernel_matrix(basis='computed')
 1000 loops, best of 3: 375 us per loop
 sage: %timeit M.right_kernel_matrix(basis='pivot')
 1000 loops, best of 3: 382 us per loop
 sage: %timeit M.transpose()
 100000 loops, best of 3: 9.93 us per loop
 sage: %timeit M.stack(M)
 10000 loops, best of 3: 39.2 us per loop
 sage: %timeit M.submatrix(1,1)
 10000 loops, best of 3: 30.7 us per loop
 }}}
 With the current `develop` branch, I get
 {{{
 sage: M=matrix(GF(5),6,6,range(36))
 sage: %timeit M.right_kernel_matrix(basis='computed')
 1000 loops, best of 3: 231 us per loop
 sage: %timeit M.right_kernel_matrix(basis='pivot')
 1000 loops, best of 3: 232 us per loop
 sage: %timeit M.transpose()
 100000 loops, best of 3: 13.1 us per loop
 sage: %timeit M.stack(M)
 10000 loops, best of 3: 52.8 us per loop
 sage: %timeit M.submatrix(1,1)
 10000 loops, best of 3: 37.9 us per loop
 }}}

 So, there still remains something to do for right kernel matrix.

--
Ticket URL: <http://trac.sagemath.org/ticket/15104#comment:19>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to