Home
last modified time | relevance | path

Searched refs:logical_and (Results 1 – 25 of 110) sorted by relevance

12345

/third_party/mindspore/mindspore/ops/composite/multitype_ops/
Dlogical_and_impl.py22 logical_and = base.MultitypeFuncGraph("logical_and", True) variable
25 @logical_and.register("Number", "Number")
40 @logical_and.register("Tensor", "Tensor")
52 return F.logical_and(x, y)
D__init__.py36 from .logical_and_impl import logical_and
/third_party/mindspore/mindspore/numpy/
Dlogic_ops.py507 same_inf = F.logical_or(F.logical_and(a_posinf, b_posinf), F.logical_and(a_neginf, b_neginf))
508 diff_inf = F.logical_or(F.logical_and(a_posinf, b_neginf), F.logical_and(a_neginf, b_posinf))
509 res = F.logical_and(F.logical_or(res, same_inf), F.logical_not(diff_inf))
510 both_nan = F.logical_and(_isnan(a), _isnan(b))
514 res = F.logical_and(F.logical_not(both_nan), res)
673 def logical_and(x1, x2, dtype=None): function
704 return _apply_tensor_op(F.logical_and, x1, x2, dtype=dtype)
742 return _apply_tensor_op(F.logical_and, y1, y2, dtype=dtype)
783 res = logical_or(res, logical_and(isnan(a1), isnan(a2)))
/third_party/mindspore/tests/st/ops/ascend/test_tbe_ops/
Dtest_logical_and.py28 self.logical_and = P.LogicalAnd()
32 return self.logical_and(x1_, x2_)
40 logical_and = Net()
41 output = logical_and(Tensor(x1), Tensor(x2))
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure2/
Dids.hpp41 logical_and, enumerator
118 logical_and = binary_op<op::logical_and>::value, enumerator
Dlexer_def.hpp31 ("&&", token_ids::logical_and) in conjure_tokens()
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/
Dids.hpp42 logical_and, enumerator
119 logical_and = binary_op<op::logical_and>::value, enumerator
Dlexer_def.hpp43 ("&&", token_ids::logical_and) in conjure_tokens()
/third_party/boost/libs/yap/example/
Dfuture_group.cpp30 BOOST_YAP_USER_BINARY_OPERATOR(logical_and, future_expr, future_expr)
83 boost::yap::expr_kind::logical_and, in operator ()()
/third_party/mindspore/tests/st/ops/gpu/
Dtest_logical_op.py63 assert np.all(output.asnumpy() == np.logical_and(x, y))
68 assert np.all(output.asnumpy() == np.logical_and(x, y))
/third_party/boost/libs/yap/doc/
Duser_macros_snippets.cpp48 BOOST_YAP_USER_BINARY_OPERATOR(logical_and, user_expr, user_expr)
233 BOOST_YAP_USER_UDT_UDT_BINARY_OPERATOR(logical_and, ::user_expr, is_string, is_string)
266 BOOST_YAP_USER_UDT_ANY_BINARY_OPERATOR(logical_and, ::user_expr, is_vector)
/third_party/boost/boost/phoenix/operator/
Dlogical.hpp22 (logical_and)
/third_party/mindspore/mindspore/ops/_op_impl/akg/gpu/
D__init__.py20 from .logical_and import _logical_and_akg
/third_party/boost/boost/proto/
Dtags.hpp93 struct logical_and {}; struct
Dproto_fwd.hpp284 struct logical_and;
572 template<typename T, typename U> struct logical_and;
655 typedef make_expr<tag::logical_and> make_logical_and;
726 typedef functional::make_expr<tag::logical_and> _make_logical_and;
/third_party/boost/libs/mpi/test/
Dis_mpi_op_test.cpp27 BOOST_TEST((is_mpi_op<logical_and<int>, int>::op() == MPI_LAND)); in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/phoenix/doc/inside/
Drules.qbk172 [[`expression::logical_and<Lhs, Rhs>`] [``
173 rule::logical_and
174 : expression::logical_and<meta_grammar, meta_grammar>
/third_party/boost/boost/typeof/std/
Dfunctional.hpp29 BOOST_TYPEOF_REGISTER_TEMPLATE(std::logical_and, 1)
/third_party/boost/boost/compute/functional/
Doperator.hpp88 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(logical_and, "&&", T, T)
/third_party/boost/libs/compute/include/boost/compute/functional/
Doperator.hpp88 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(logical_and, "&&", T, T)
/third_party/boost/boost/multi_array/
Dstorage_order.hpp66 std::logical_and<bool>()); in all_dims_ascending()
/third_party/boost/libs/compute/include/boost/compute/lambda/
Dresult_of.hpp84 BOOST_COMPUTE_LAMBDA_RESULT_OF_COMPARISON_OPERATOR(proto::tag::logical_and)
/third_party/boost/libs/proto/example/
Dfutures.cpp45 proto::logical_and<FutureGroup, FutureGroup>
/third_party/boost/libs/typeof/test/
Dstd.cpp61 BOOST_STATIC_ASSERT(boost::type_of::test<logical_and<int> >::value);
/third_party/boost/boost/compute/lambda/
Dresult_of.hpp84 BOOST_COMPUTE_LAMBDA_RESULT_OF_COMPARISON_OPERATOR(proto::tag::logical_and)

12345