cuda-fixnum icon indicating copy to clipboard operation
cuda-fixnum copied to clipboard

Use warp votes to branch on argument size to select fastest algo

Open unzvfu opened this issue 5 years ago • 1 comments

Something like this for example:

if (__all(bits < digit::BITS))
    algo_small_params(...);
else
    algo_generic(...);

unzvfu avatar Aug 27 '18 01:08 unzvfu