Efficiency Improvements in Maple 7
|
A number of efficiency improvements have been applied in order to make Maple 7 faster and use less memory.
|
|
Numeric Linear Algebra
|
|
|
The following enhancements to the LinearAlgebra package lead to faster computation and reduced storage requirements.
|
•
|
Optimized Routines for Basic Operations: Significant improvements to the speed of hardware floating-point computations in the LinearAlgebra package have been made for supported UNIX platforms. This is due to new linking of the external NAG and CLAPACK libraries with the optimized ATLAS library. These optimizations parallel the high performance present in Maple 6 for the Microsoft Windows platforms, which was obtained from linking with Intel's Math Kernel library.
|
•
|
Enhanced Support for Band and Packed Triangular Matrices: There is added support for fast matrix operations involving floating-point band and packed triangular matrices. This support, provided through external routines specially designed for such matrix structures, allows the operations to be done with a minimum amount of storage.
|
•
|
Enhanced Support for Sparse Matrices: There is added support for efficient floating-point sparse matrix arithmetic. In addition, the LinearSolve function now allows the option of choosing an iterative solver for sparse symmetric linear systems. The iterative solver usually requires significantly less storage than traditional methods when the input matrix is very large and sparse.
|
•
|
Additional Improvements: There is improved floating-point support for the Eigenvectors, Transpose, and HermitianTranspose functions. The Eigenvectors function now uses a "divide-and-conquer" scheme for nongeneralized real-symmetric and complex-hermitian problems. Also, the calculation of optimized solutions in the rank-deficient case has been made more efficient in the LeastSquares function.
|
|
|
Numerical Ordinary Differential Equations
|
|
•
|
Maple's default numerical ODE solver has been replaced by a new rkf45 solver which has been adapted to perform operations in a mixture of native Maple code and external compiled C code. The new code computes solutions 2-5 times faster for most problems, also storing computed solution values so that requests for points in the already computed range or plots over that range can be performed in negligible time.
|
•
|
Maple's high-accuracy numerical ODE solver, dverk78, has also been substantially improved, obtaining answers in less than half the time of the dverk78 of prior releases.
|
|
|
Large Integer Division and Floating-Point Division
|
|
•
|
Maple has a new algorithm for large integer division. The new algorithm is based on a paper in ISSAC 97, pp. 339-341, "Practical Integer Division with Karatsuba Complexity" by Tudor Jebelean. The complexity of Jebelean's division algorithm is O(n^log[2](3)) (approximately n^1.585), while the complexity of classical integer division is O(n^2). In practice, Maple's implementation of Jebelean's algorithm becomes faster than the classical algorithm when the divisor is of size 50 words and becomes two times faster for a divisor of 250 words. This speed improvement increases for larger divisors.
|
•
|
In Maple, Jebelean's division algorithm is used when the divisor is greater than 50 words in size. For smaller divisors, the classical division algorithm will be used.
|
•
|
Since Maple's floating-point division uses routines for integer division, floating-point division has also become faster.
|
|
|
String Operations
|
|
•
|
The new package StringTools contains fast, optimized basic string operations.
|
|
|
List Operations
|
|
•
|
The new package ListTools contains basic list operations.
|
|
|
Miscellaneous
|
|
•
|
Polynomial factorization over Z[x] now uses an implementation of M. van Hoeij's algorithm (M. van Hoeij, "Factoring polynomials and the knapsack problem", to appear in Journal of Number Theory). This allows factor to quickly find factorizations for classes of polynomials that are hard to factor, such as resolvents or Swinnerton-Dyer polynomials.
|
>
|
factor( x^128-x^112+x^80-x^64+x^48-x^16+1 ); # Takes very long in Maple 6.
|
| (1) |
•
|
The computation of factorials now uses a new algorithm. This results in approximately thirty times better performance for large factorial computations, and significantly extends the range of factorial computations that can be performed. There is no longer any practical limit on the size of an argument to a factorial.
|
>
|
st := time(): 25000!: time() - st; # about 30 seconds in Maple 6
|
| (2) |
>
|
st := time(): 45000!: time() - st; # not possible in Maple 6
|
| (3) |
>
|
system( "/usr/sbin/psrinfo -v |grep MHz|head -1" ):
|
The sparcv9 processor operates at 400 MHz,
|
|
|
•
|
The routines iroot and iperfpow are significantly faster due to new algorithms.
|
•
|
The sort procedure now takes a length option to sort a list of expressions by length.
|
>
|
expr := convert( series( tan( x ), x= 0 ), 'polynom' );
|
| (4) |
>
|
sort( convert( indets( expr, 'algebraic' ), 'list' ), 'length' );
|
| (5) |
|
|