mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-28 09:13:14 +08:00
same for neon
This commit is contained in:
parent
32e7dae776
commit
7dc18b20bb
@ -220,7 +220,7 @@ template<> struct conj_helper<Packet2cf, Packet2cf, false,true>
|
|||||||
|
|
||||||
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
|
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
|
||||||
{
|
{
|
||||||
return pmul(a, pconj(b));
|
return internal::pmul(a, pconj(b));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -231,7 +231,7 @@ template<> struct conj_helper<Packet2cf, Packet2cf, true,false>
|
|||||||
|
|
||||||
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
|
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
|
||||||
{
|
{
|
||||||
return pmul(pconj(a), b);
|
return internal::pmul(pconj(a), b);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -242,7 +242,7 @@ template<> struct conj_helper<Packet2cf, Packet2cf, true,true>
|
|||||||
|
|
||||||
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
|
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
|
||||||
{
|
{
|
||||||
return pconj(pmul(a, b));
|
return pconj(internal::pmul(a, b));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user