Home
last modified time | relevance | path

Searched refs:less_equal (Results 1 – 25 of 76) sorted by relevance

1234

/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_less_equal.cc19 REGISTER5(BinaryOp, CPU, "LessEqual", functor::less_equal, float, Eigen::half,
21 REGISTER7(BinaryOp, CPU, "LessEqual", functor::less_equal, int64, uint8, uint16,
27 REGISTER9(BinaryOp, GPU, "LessEqual", functor::less_equal, float, Eigen::half,
29 REGISTER(BinaryOp, GPU, "LessEqual", functor::less_equal, int16);
32 REGISTER4(BinaryOp, GPU, "LessEqual", functor::less_equal, uint8, uint16,
45 BinaryOp<CPUDevice, functor::less_equal<int32>>);
Dcwise_op_gpu_less_equal.cu.cc24 DEFINE_BINARY10(less_equal, Eigen::half, float, double, int64, uint8, uint16,
27 DEFINE_BINARY4(less_equal, uint8, uint16, uint32, uint64);
/external/llvm-project/libcxx/test/std/utilities/function.objects/comparisons/
Dless_equal.pass.cpp22 typedef std::less_equal<int> F; in main()
33 do_pointer_comparison_test<int, std::less_equal>(); in main()
36 typedef std::less_equal<> F2; in main()
46 constexpr bool foo = std::less_equal<int> () (36, 36); in main()
49 constexpr bool bar = std::less_equal<> () (36.0, 36); in main()
Dtransparent.pass.cpp34 static_assert ( !is_transparent<std::less_equal<int>>::value, "" ); in main()
35 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" ); in main()
36 static_assert ( is_transparent<std::less_equal<void>>::value, "" ); in main()
37 static_assert ( is_transparent<std::less_equal<>>::value, "" ); in main()
Dconstexpr_init.pass.cpp32 std::less_equal<T> le; in test_constexpr_context()
/external/libcxx/test/std/utilities/function.objects/comparisons/
Dless_equal.pass.cpp23 typedef std::less_equal<int> F; in main()
34 do_pointer_comparison_test<int, std::less_equal>(); in main()
37 typedef std::less_equal<> F2; in main()
47 constexpr bool foo = std::less_equal<int> () (36, 36); in main()
50 constexpr bool bar = std::less_equal<> () (36.0, 36); in main()
Dtransparent.pass.cpp33 static_assert ( !is_transparent<std::less_equal<int>>::value, "" ); in main()
34 static_assert ( !is_transparent<std::less_equal<std::string>>::value, "" ); in main()
35 static_assert ( is_transparent<std::less_equal<void>>::value, "" ); in main()
36 static_assert ( is_transparent<std::less_equal<>>::value, "" ); in main()
Dconstexpr_init.pass.cpp33 std::less_equal<T> le; in test_constexpr_context()
/external/llvm-project/clang/test/SemaCXX/
Dlibstdcxx_libcxx_less_hack.cpp9 template<typename T = void> struct less_equal {}; struct
21 template<> struct less_equal<> { struct
59 less_equal<>()(p, nullptr); in test()
60 less_equal<>()(nullptr, p); in test()
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_LessEqual.pbtxt4 name: "math.less_equal"
7 name: "less_equal"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_LessEqual.pbtxt13 tf.math.less_equal(x, y) ==> [True, True, False]
17 tf.math.less_equal(x, y) ==> [True, True, True]
/external/libcxx/test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/
Dless_equal.pass.cpp32 auto c = std::less_equal<P>(); in main()
/external/llvm-project/libcxx/test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.comparison_function_objects/
Dless_equal.pass.cpp32 auto c = std::less_equal<P>(); in main()
/external/tensorflow/tensorflow/lite/testing/op_tests/
Dless_equal.py52 out = tf.less_equal(input_value1, input_value2)
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_tensor_test_ops.py97 math_ops.less_equal,
Dragged_operators.py55 ragged_tensor.RaggedTensor.__le__ = math_ops.less_equal
/external/eigen/Eigen/src/Core/functors/
DStlFunctors.h64 struct functor_traits<std::less_equal<T> >
/external/ruy/ruy/
Dcheck_macros.h120 RUY_CHECK_OP_IMPL(RUY_CHECK_LE, x, <=, std::less_equal, y)
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_binary_test.py851 self._compareScalar(math_ops.less_equal, x, y, t), x <= y)
881 self._compare(xt, yt, np.less_equal, math_ops.less_equal)
936 self._testBCastByFunc(np.less_equal, math_ops.less_equal)
954 math_ops.less, math_ops.less_equal, math_ops.greater,
Dcwise_ops_test.py103 self._compareScalar(math_ops.less_equal, x, y, t), x <= y)
137 self._compare(xt, yt, np.less_equal, math_ops.less_equal)
194 self._testBCastByFunc(np.less_equal, math_ops.less_equal)
212 math_ops.less, math_ops.less_equal, math_ops.greater,
925 (np.less_equal, _LE),
/external/libcxx/include/experimental/
Dpropagate_const103 template <class T> struct less_equal<experimental::fundamentals_v2::propagate_const<T>>;
550 struct less_equal<experimental::fundamentals_v2::propagate_const<_Tp>>
558 …return std::less_equal<_Tp>()(_VSTD_LFTS_V2::get_underlying(__pc1), _VSTD_LFTS_V2::get_underlying(…
/external/llvm-project/libcxx/include/experimental/
Dpropagate_const102 template <class T> struct less_equal<experimental::fundamentals_v2::propagate_const<T>>;
549 struct less_equal<experimental::fundamentals_v2::propagate_const<_Tp>>
557 …return std::less_equal<_Tp>()(_VSTD_LFTS_V2::get_underlying(__pc1), _VSTD_LFTS_V2::get_underlying(…
/external/tensorflow/tensorflow/python/kernel_tests/random/
Drandom_gamma_test.py232 math_ops.less_equal(x, 0.), dtype=dtypes.int64)).eval())
/external/tensorflow/tensorflow/python/ops/
Dcheck_ops.py946 return _binary_assert('<=', 'assert_less_equal', math_ops.less_equal,
947 np.less_equal, x, y, data, summarize, message, name)
2034 return math_ops.reduce_all(math_ops.less_equal(zero, diff))
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dgrouping.py217 math_ops.less_equal(buckets_min, seq_length),

1234