tkramer-motion

Results 6 comments of tkramer-motion

I get the same error when submitting a large number of tasks using the ConcurrentTaskRunner

This happens when using Explicit template instantiation template class SomeClass;

Here you go. ``` #include #define FIXED_EXPONENT 0x1000000000 void __global__ k_example(const double u_orig) { double u = u_orig * FIXED_EXPONENT; __int128 ret; if (!isfinite(u) || static_cast(u) >= static_cast(LLONG_MAX) || static_cast(u)

@harkgill-amd This happens regardless of the architecture chosen. Issue seems to be caused by the casting to __int128. Operating on 64-bit ints doesn't cause the error but obviously the logic...

Confirmed. We can compile our project with 6.2.0. Thanks!