cppalliance / decimal

A C++14 implementation of IEEE 754 decimal floating point numbers
https://cppalliance.org/decimal/decimal.html
Boost Software License 1.0
24 stars 2 forks source link

Add GPU acceleration #716

Open mborland opened 4 months ago

mborland commented 4 months ago

Now that the CUDAfication of math is underway many of the same techniques can be applied here to enable CUDA and SYCL support throughout the library. The main point of difficulty for SYCL will be removing recursion from the constructors of the non-fast types.

mborland commented 4 months ago

spir64-unknown-unknown aka SYCL does not support 128-bit integer types even thought the host compiler (ICPX) does. Need to add additional macro checks.

mborland commented 3 months ago

Deferred for now. Development will exist on cuda-development branch. Maybe for version 3 post-boost review or when we receive a strong demand signal