Skip to content

Instantly share code, notes, and snippets.

@mgaunard
Forked from psiha/gist:4001645
Created November 2, 2012 14:33
Show Gist options
  • Select an option

  • Save mgaunard/4001714 to your computer and use it in GitHub Desktop.

Select an option

Save mgaunard/4001714 to your computer and use it in GitHub Desktop.
blunder
namespace boost { namespace simd { namespace ext
{
BOOST_SIMD_FUNCTOR_IMPLEMENTATION( boost::simd::tag::minus_, boost::simd::tag::cpu_
, (A0)
, ((simd_<arithmetic_<A0>, boost::simd::tag::simd_emulation_<16> >))
((simd_<arithmetic_<A0>, boost::simd::tag::simd_emulation_<16> >))
)
{
typedef A0 result_type;
BOOST_SIMD_FUNCTOR_CALL_REPEAT(2)
{
return a0 - a1;
}
};
} } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment