There were a few of these before, but now there are a bunch of new warning compiler messages being emitted during compilation of Axom tests in a CUDA build. The warning involves passing long double to a device kernel.
That type is not supported on GPUs (NVIDIA or AMD) and is resolved to double by the compiler.
It's probably best to restrict the types used in device kernels in Axom tests to not include long double
There were a few of these before, but now there are a bunch of new warning compiler messages being emitted during compilation of Axom tests in a CUDA build. The warning involves passing
long doubleto a device kernel.That type is not supported on GPUs (NVIDIA or AMD) and is resolved to
doubleby the compiler.It's probably best to restrict the types used in device kernels in Axom tests to not include
long double