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
template <classA, classT, class = typename std::enable_if<std::is_integral<T>::value, void>::type>
253
-
XSIMD_INLINE batch<float, A> div(batch<T, A> const& self, batch<T, A> const& other, requires_arch<altivec>) noexcept
253
+
XSIMD_INLINE batch<T, A> div(batch<T, A> const& self, batch<T, A> const& other, requires_arch<altivec>) noexcept
254
254
{
255
255
returnvec_div(self, other);
256
256
}
@@ -740,7 +740,7 @@ namespace xsimd
740
740
template <classA, classT, class = typename std::enable_if<std::is_scalar<T>::value, void>::type>
741
741
XSIMD_INLINE batch<T, A> select(batch_bool<T, A> const& cond, batch<T, A> const& true_br, batch<T, A> const& false_br, requires_arch<altivec>) noexcept
template <classA, classT, bool... Values, class = typename std::enable_if<std::is_scalar<T>::value, void>::type>
746
746
XSIMD_INLINE batch<T, A> select(batch_bool_constant<T, A, Values...> const&, batch<T, A> const& true_br, batch<T, A> const& false_br, requires_arch<altivec>) noexcept
0 commit comments