/third_party/mindspore/mindspore/ops/composite/multitype_ops/ |
D | logical_and_impl.py | 22 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__.py | 36 from .logical_and_impl import logical_and
|
/third_party/mindspore/mindspore/numpy/ |
D | logic_ops.py | 507 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/ |
D | test_logical_and.py | 28 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/ |
D | ids.hpp | 41 logical_and, enumerator 118 logical_and = binary_op<op::logical_and>::value, enumerator
|
D | lexer_def.hpp | 31 ("&&", token_ids::logical_and) in conjure_tokens()
|
/third_party/boost/libs/spirit/example/qi/compiler_tutorial/conjure3/ |
D | ids.hpp | 42 logical_and, enumerator 119 logical_and = binary_op<op::logical_and>::value, enumerator
|
D | lexer_def.hpp | 43 ("&&", token_ids::logical_and) in conjure_tokens()
|
/third_party/boost/libs/yap/example/ |
D | future_group.cpp | 30 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/ |
D | test_logical_op.py | 63 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/ |
D | user_macros_snippets.cpp | 48 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/ |
D | logical.hpp | 22 (logical_and)
|
/third_party/mindspore/mindspore/ops/_op_impl/akg/gpu/ |
D | __init__.py | 20 from .logical_and import _logical_and_akg
|
/third_party/boost/boost/proto/ |
D | tags.hpp | 93 struct logical_and {}; struct
|
D | proto_fwd.hpp | 284 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/ |
D | is_mpi_op_test.cpp | 27 BOOST_TEST((is_mpi_op<logical_and<int>, int>::op() == MPI_LAND)); in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/phoenix/doc/inside/ |
D | rules.qbk | 172 [[`expression::logical_and<Lhs, Rhs>`] [`` 173 rule::logical_and 174 : expression::logical_and<meta_grammar, meta_grammar>
|
/third_party/boost/boost/typeof/std/ |
D | functional.hpp | 29 BOOST_TYPEOF_REGISTER_TEMPLATE(std::logical_and, 1)
|
/third_party/boost/boost/compute/functional/ |
D | operator.hpp | 88 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(logical_and, "&&", T, T)
|
/third_party/boost/libs/compute/include/boost/compute/functional/ |
D | operator.hpp | 88 BOOST_COMPUTE_DECLARE_BINARY_OPERATOR(logical_and, "&&", T, T)
|
/third_party/boost/boost/multi_array/ |
D | storage_order.hpp | 66 std::logical_and<bool>()); in all_dims_ascending()
|
/third_party/boost/libs/compute/include/boost/compute/lambda/ |
D | result_of.hpp | 84 BOOST_COMPUTE_LAMBDA_RESULT_OF_COMPARISON_OPERATOR(proto::tag::logical_and)
|
/third_party/boost/libs/proto/example/ |
D | futures.cpp | 45 proto::logical_and<FutureGroup, FutureGroup>
|
/third_party/boost/libs/typeof/test/ |
D | std.cpp | 61 BOOST_STATIC_ASSERT(boost::type_of::test<logical_and<int> >::value);
|
/third_party/boost/boost/compute/lambda/ |
D | result_of.hpp | 84 BOOST_COMPUTE_LAMBDA_RESULT_OF_COMPARISON_OPERATOR(proto::tag::logical_and)
|