I recently stumbled upon a paper on a parallelization of the Pollard-rho algorithm, and given my specific application, in addition to the fact that I haven't attained the required level of math, I'm wondering if this particular parallelization method helps my specific case.
I'm trying to find two factors--semiprimes--of a very large number. My assumption, based on what little I can understand of the paper, is that this parallelization works well on a number with lots of smaller factors, rather than two very large factors.
Is this true? Should I use this parallelization or use something else? Should I even use Pollard-rho, or is there a better parallelization of a different factorization algorithm?
2^16(5 decimal digits) to2^8192(2467 decimal digits). I'm guessing I'd probably use a number of different algorithms, depending on the magnitude of the number, though I'm not sure. I know that Pollard-rho is a specialized algorithm, but I haven't found many parallelizations of other algorithms, so I'm struggling a little bit. – CMC Sep 26 '11 at 2:522^8192is the theoretical upper bound, I do not expect to be able to factor anything that large. – CMC Sep 26 '11 at 3:02