racket/collects/math/private/matrix
Neil Toronto f42cc6f14a Fixed major performance issue with matrix arithmetic; please merge to 5.3.2
The fix consists of three parts:

1. Rewriting `inline-matrix*'. The material change here is that the
   expansion now contains only direct applications of `+' and `*'.
   TR's optimizer replaces them with `unsafe-fx+' and `unsafe-fx*',
   which keeps intermediate flonum values from being boxed.

2. Making the types of all functions that operate on (Matrix Number)
   values more precise. Now TR can prove that matrix operations preserve
   inexactness. For example, matrix-conjugate : (Matrix Flonum) ->
   (Matrix Flonum) and three other cases for Real, Float-Complex, and
   Number.

3. Changing the return types of some functions that used to return
   things like (Matrix (U A 0)). Now that we worry about preserving
   inexactness, we can't have `matrix-upper-triangle' always return a
   matrix that contains exact zeros. It now accepts an optional `zero'
   argument of type A.
2013-01-21 22:04:04 -07:00
..
matrix-2d.rkt Moar `math/matrix' review/refactoring 2012-12-31 14:17:17 -07:00
matrix-arithmetic.rkt Moar `math/matrix' review/refactoring 2012-12-31 14:17:17 -07:00
matrix-basic.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-comprehension.rkt Moar `math/matrix' review/refactoring 2012-12-31 14:17:17 -07:00
matrix-constructors.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-conversion.rkt `math/matrix' fixes; please merge to 5.3.2. 2013-01-16 16:40:43 -07:00
matrix-expt.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-gauss-elim.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-gram-schmidt.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-lu.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-operator-norm.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-qr.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-solve.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-subspace.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
matrix-syntax.rkt Initial `math/matrix' documentation, and some changes 2013-01-01 18:19:43 -07:00
matrix-types.rkt Initial `math/matrix' documentation, and some changes 2013-01-01 18:19:43 -07:00
typed-matrix-arithmetic.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
untyped-matrix-arithmetic.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00
utils.rkt Fixed major performance issue with matrix arithmetic; please merge to 5.3.2 2013-01-21 22:04:04 -07:00