Searched refs:binary_pred_bool (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/external/executorch/kernels/optimized/vec/ |
H A D | vec_base.h | 405 inline Vectorized<T> binary_pred_bool(const Vectorized<T>& other, Op op) const { in binary_pred_bool() function 415 …Vectorized<T> eq(const Vectorized<T>& other) const { return binary_pred_bool(other, std::equal_to<… in eq() 416 …Vectorized<T> ne(const Vectorized<T>& other) const { return binary_pred_bool(other, std::not_equal… in ne() 417 …Vectorized<T> gt(const Vectorized<T>& other) const { return binary_pred_bool(other, std::greater<T… in gt() 418 …Vectorized<T> ge(const Vectorized<T>& other) const { return binary_pred_bool(other, std::greater_e… in ge() 419 …Vectorized<T> lt(const Vectorized<T>& other) const { return binary_pred_bool(other, std::less<T>()… in lt() 420 …Vectorized<T> le(const Vectorized<T>& other) const { return binary_pred_bool(other, std::less_equa… in le()
|
/aosp_15_r20/external/pytorch/aten/src/ATen/cpu/vec/ |
H A D | vec_base.h | 604 inline Vectorized<T> binary_pred_bool(const Vectorized<T>& other, Op op) const { in binary_pred_bool() function 614 …Vectorized<T> eq(const Vectorized<T>& other) const { return binary_pred_bool(other, std::equal_to<… in eq() 615 …Vectorized<T> ne(const Vectorized<T>& other) const { return binary_pred_bool(other, std::not_equal… in ne() 616 …Vectorized<T> gt(const Vectorized<T>& other) const { return binary_pred_bool(other, std::greater<T… in gt() 617 …Vectorized<T> ge(const Vectorized<T>& other) const { return binary_pred_bool(other, std::greater_e… in ge() 618 …Vectorized<T> lt(const Vectorized<T>& other) const { return binary_pred_bool(other, std::less<T>()… in lt() 619 …Vectorized<T> le(const Vectorized<T>& other) const { return binary_pred_bool(other, std::less_equa… in le()
|