Is there support for bigintegers in thrust ?

Hi,

I have an algorithm where I need to do sum reduction on numbers which are very large.
The maximum number would have 2048 bits in binary or 617 digits in decimal.

Is there any library that is optimized for GPU for bigintegers ?

Any such support in thrust?

Thanks and regards,

Heshsham

thrust doesn’t have native support for a “biginteger” data type.

This may be of interest:

http://stackoverflow.com/questions/12957116/large-integer-addition-with-cuda

Thanks for the link txbob :-)