Performance - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Performance

 

Floating-point LinearAlgebra

Improved Parallel Garbage Collector

Multivariate Modular Gcds

More special functions implemented in evalhf

More consistent evaluation of elementary and special functions in evalf, evalhf, and hardware floats

Floating-point LinearAlgebra

The performance of several commands in the LinearAlgebra package for floating-point operations done at default double precision is improved in Maple 2015 on the 64-bit Windows platform. The improvement is due to updating the version and the usage of the Intel Math Kernel Library (MKL).

The following plots were computed in Windows 7 64-bit on a machine with a 3.50 GHz AMD FX-8320 8-core processor. The degree of improvement of some commands may vary with the machine hardware.

 

 

Improved Parallel Garbage Collector

Maple garbage collector has been improved to perform more operations in parallel. This allows for greater parallelism during collection, leading to better performance. The following graphs compare the performance between Maple 18 and Maple 2015.

       

The graph in the left compares performance of the total time for the benchmark (as mentioned later) vs. the number of cores used. The graph in the right compares performance of the garbage collector vs. the number of cores. The improved collector in Maple 2015 shows better parallel performance, especially as additional cores are added, whereas Maple 18 tends to plateau quite quickly.

 

This benchmark can be re-run using the code from the following Code Edit Region. The graphs shown earlier were generated using 10 iterations and Array size of 106.

Generate benchmark data

 

Multivariate Modular Gcds

The performance for computing greatest common divisors of multivariate polynomials modulo of a machine size prime number is increased by orders of magnitude. The improvement is due to a new optimized C-level implementation based on evaluation and interpolation. On 64-bit platforms, the following examples are more than 20 times faster in Maple 2015 than in Maple 18 on the same machine.

pprevprime262

p:=4611686018427387847

(3.1)

f__2Expandx+y+270 mod p:

g__2Expandf__22 mod p:

h__2Expandf__2f__2+1 mod p:

degreeg__2,nopsg__2

140,10011

(3.2)

degreeh__2,nopsh__2

140,10011

(3.3)

F__2CodeTools:-UsageGcdg__2,h__2 mod p:evalbF__2=f__2

memory used=109.80KiB, alloc change=0 bytes, cpu time=16.00ms, real time=20.00ms, gc time=0ns

true

(3.4)

f__3Expandx+y+z+215 mod p:

g__3Expandf__32 mod p:

h__3Expandf__3f__3+1 mod p:

degreeg__3,nopsg__3

30,5456

(3.5)

degreeh__3,nopsh__3

30,5456

(3.6)

F__3CodeTools:-UsageGcdg__3,h__3 mod p:evalbF__3=f__3

memory used=16.70KiB, alloc change=0 bytes, cpu time=31.00ms, real time=30.00ms, gc time=0ns

true

(3.7)
Code for generating plots

Improvements are significant for smaller primes as well. Following are some benchmarks, taken on an AMD Opteron 62xx class CPU running at 2.1GHz. In all cases, the input polynomials are dense of degree d and the gcd has degree d/2.

 

 

 

 

 

 

 

 

More special functions implemented in evalhf

The Airy functions, AiryAi and AiryBi, and the LambertW function are now implemented in evalhf, for fast hardware precision evaluation. For the Airy functions, this implementation is restricted to real arguments (evalhf will call back to the standard library for complex arguments with non-0 imaginary part). For the LambertW function, all branches are implemented in evalhf for real and complex arguments.

evalhfAiryAi3.5

0.00258409878698963747

(4.1)

evalhfAiryBi1,2.7

0.429895343082015380

(4.2)

evalhfLambertW3,25.1234

0.372843232136041092+17.3003075079767399I

(4.3)

 

More consistent evaluation of elementary and special functions in evalf, evalhf, and hardware floats

Much effort has been put into making the results of evaluating expressions involving floating point numbers consistent across the three evaluation modes: software float evaluation with evalf, hardware float evaluation with evalhf, and hardware float evaluation of expression involving HFloat objects (Maple objects which hold hardware floating point numbers). The correct and consistent evaluation of such expressions where branch cuts are involved is of particular concern. For example, consider the following:

arcsin1.5, arcsin1.5+0. I, arcsin1.50. I

1.5707963270.9624236501I,1.570796327+0.9624236501I,1.5707963270.9624236501I

(5.1)

evalhfarcsin1.5, evalhfarcsin1.5+0. I, evalhfarcsin1.50. I

1.570796326794896560.962423650119206942I,1.57079632679489656+0.962423650119206942I,1.570796326794896560.962423650119206942I

(5.2)

arcsinHFloat1.5, arcsinHFloat1.5+0. I, arcsinHFloat1.50. I

1.570796326794900.962423650119207I,1.57079632679490+0.962423650119207I,1.570796326794900.962423650119207I

(5.3)

In previous versions of Maple, the second and third sets of results were all the same, as the hardware float computation environments of Maple were not respecting the branch cut.