libntl / ntl

258 stars 51 forks source link

implement fast ExpTrunc() and CharPolyMod() #23

Open yyyyx4 opened 1 year ago

yyyyx4 commented 1 year ago

...for zz_pX and ZZ_pX. Both algorithms require divisions by scalars up to the precision, so they cannot be used when the degree is larger than the characteristic, but they give significant speedups in large characteristic.

Example benchmark results for CharPolyMod() in zz_pX, where red is the current version of NTL and blue is this branch:

Characteristic $11$ (essentially unchanged): Benchmark results for characteristic 11

(The outliers appear when the new algorithm cannot be used and the minimal and characteristic polynomials are not the same; in such a case the library falls back to a much slower algorithm.)

Characteristic $99999989 ≈ 2^{26.6}$ (much faster): Benchmark results for characteristic 99999989

I've confirmed on millions of random instances that the code works correctly, for prime characteristics and degrees up to 100.