You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The config detect scripts not only look for existence of __int128_t but also verifies whether std::make_unsigned<__int128_t>::type is defined.
This fails on OSX and fedora although both types __int128_t and __uint128_t are defined.
FFLAS-FFPACK decides whether it supports int128 based on Givaro's detection. As a consequence simd256<int64_t>::mulhi can not be defined although it does not use the std::make_unsigned machinery.
The text was updated successfully, but these errors were encountered:
For the record, I have already decoupled FFLAS-FFPACK detection of int128 from that of Givaro, since fflas-ffpack does not require the ability to do std:make_unsigned<__int128_t>
The config detect scripts not only look for existence of
__int128_t
but also verifies whetherstd::make_unsigned<__int128_t>::type
is defined.This fails on OSX and fedora although both types
__int128_t
and__uint128_t
are defined.FFLAS-FFPACK decides whether it supports int128 based on Givaro's detection. As a consequence simd256<int64_t>::mulhi can not be defined although it does not use the
std::make_unsigned
machinery.The text was updated successfully, but these errors were encountered: