Post
Topic
Board Altcoin Discussion
Re: [Bounty] Primecoin Standalone CPU Miner! Current: 2.5BTC
by
willphase
on 13/07/2013, 18:43:35 UTC
A useful thing to find would be a CUDA (or, ideally, an OpenCL, which runs on both nVidia and AMD) program that performs fast modular exponentiation of large numbers (i.e. larger than 64 bits; the numbers needed are on the order of 256 bits or larger).  Modular exponentiation is at the heart of both the Fermat Primality Test and the various forms of the Euler Lagrange Lichfitz Test.

This is spot on.   Both luke-jr and I have both had success replacing Openssl's default big number exponentiation function with the one from GMP.  I recommend perhaps people look there Smiley

That's enough hints for now!

Will