Are long double
s with different implementations supported?
#3931
Labels
question
Further information is requested
MSVC supports
float
,double
andlong double
butlong double
is the same asdouble
.However with classic FPU instructions, x86 provides a native support for a more precise type than the usual
double
. Some implementations may use that as underlying implementation oflong double
. MSVC doesn't, but maybe Intel Compiler or Clang or CUDA has a switch for that support.Does such a switch exist? Do we need to support that?
The question is for #3928 , where I assume that
long double
is the same asdouble
. The vector algorithm may return a totally wrong pointer for array oflong double
s of different implementation.The text was updated successfully, but these errors were encountered: