Skip to content

Commit

Permalink
Merge pull request #489 from tnguyen-ornl/tnguyen/eigen-summit
Browse files Browse the repository at this point in the history
Fixed #466
  • Loading branch information
Alex McCaskey committed Sep 20, 2021
2 parents 84a56ab + a07d28e commit f493bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tpls/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h
Expand Up @@ -452,7 +452,7 @@ template<> EIGEN_STRONG_INLINE Packet4f pandnot<Packet4f>(const Packet4f& a, con
template<> EIGEN_STRONG_INLINE Packet4i pandnot<Packet4i>(const Packet4i& a, const Packet4i& b) { return vec_and(a, vec_nor(b, b)); }

template<> EIGEN_STRONG_INLINE Packet4f pselect(const Packet4f& mask, const Packet4f& a, const Packet4f& b) {
return vec_sel(b, a, mask);
return vec_sel(b, a, reinterpret_cast<Packet4ui>(mask));
}

template<> EIGEN_STRONG_INLINE Packet4f pround<Packet4f>(const Packet4f& a) { return vec_round(a); }
Expand Down

0 comments on commit f493bd8

Please sign in to comment.