Home
last modified time | relevance | path

Searched refs:logical_not (Results 1 – 25 of 66) sorted by relevance

123

/third_party/mindspore/mindspore/ops/composite/multitype_ops/
Dlogic_not_impl.py22 logical_not = base.MultitypeFuncGraph("logical_not", True) variable
25 @logical_not.register("Number")
39 @logical_not.register("Tensor")
50 return F.logical_not(x.__bool__())
53 @logical_not.register("Tuple")
67 @logical_not.register("List")
D__init__.py38 from .logic_not_impl import logical_not
/third_party/mindspore/tests/st/ops/ascend/test_tbe_ops/
Dtest_logical_not.py28 self.logical_not = P.LogicalNot()
32 return self.logical_not(x)
39 logical_not = Net()
40 output = logical_not(Tensor(x1))
/third_party/mindspore/mindspore/numpy/
Dlogic_ops.py509 res = F.logical_and(F.logical_or(res, same_inf), F.logical_not(diff_inf))
514 res = F.logical_and(F.logical_not(both_nan), res)
560 res = F.logical_not(res)
605 def logical_not(a, dtype=None): function
636 return _apply_tensor_op(F.logical_not, a, dtype=dtype)
741 y2 = F.logical_or(F.logical_not(x1), F.logical_not(x2))
/third_party/mindspore/tests/ut/cpp/ops/
Dtest_ops_logical_not.cc49 auto logical_not = std::make_shared<LogicalNot>(); in TEST_F() local
50 logical_not->Init(); in TEST_F()
55 auto abstract = logical_not->Infer({tensor->ToAbstract()}); in TEST_F()
/third_party/boost/boost/spirit/home/qi/operator/
Dnot_predicate.hpp30 struct use_operator<qi::domain, proto::tag::logical_not> // enables !p
73 struct make_composite<proto::tag::logical_not, Elements, Modifiers>
/third_party/boost/boost/spirit/home/karma/operator/
Dnot_predicate.hpp31 struct use_operator<karma::domain, proto::tag::logical_not> // enables !g
78 struct make_composite<proto::tag::logical_not, Elements, Modifiers>
/third_party/boost/boost/xpressive/detail/static/
Dgrammar.hpp105 struct case_<tag::logical_not, Dummy>
106 : logical_not<Gram>
234 struct case_<tag::logical_not, Dummy>
236 logical_not<Gram>
/third_party/boost/libs/yap/test/
Doperators_unary.cpp90 yap::expr_kind::logical_not, in test_main()
94 yap::expr_kind::logical_not, in test_main()
98 yap::expr_kind::logical_not, in test_main()
/third_party/mindspore/tests/st/ops/gpu/
Dtest_logical_op.py93 assert np.all(output.asnumpy() == np.logical_not(x))
98 assert np.all(output.asnumpy() == np.logical_not(x))
/third_party/boost/boost/phoenix/operator/
Dlogical.hpp19 (logical_not)
/third_party/mindspore/mindspore/ops/_op_impl/akg/gpu/
D__init__.py21 from .logical_not import _logical_not_akg
/third_party/mindspore/mindspore/_extends/parse/
Dresources.py97 T.invert: F.logical_not,
98 T.not_: multitype_ops.logical_not,
/third_party/boost/boost/proto/
Dtags.hpp36 struct logical_not {}; struct
Dproto_fwd.hpp264 struct logical_not;
552 template<typename T> struct logical_not;
636 typedef make_expr<tag::logical_not> make_logical_not;
707 typedef functional::make_expr<tag::logical_not> _make_logical_not;
/third_party/mindspore/mindspore/ops/
Dfunctional.py100 logical_not = P.LogicalNot() variable
217 logical_not = P.LogicalNot() variable
284 tensor_operator_registry.register('__logical_not__', logical_not)
/third_party/boost/libs/phoenix/doc/inside/
Drules.qbk168 [[`expression::logical_not<A0>`] [``
169 rule::logical_not
170 : expression::logical_not<meta_grammar>
/third_party/boost/boost/typeof/std/
Dfunctional.hpp31 BOOST_TYPEOF_REGISTER_TEMPLATE(std::logical_not, 1)
/third_party/boost/libs/yap/doc/
Duser_macros_snippets.cpp24 BOOST_YAP_USER_UNARY_OPERATOR(logical_not, user_expr, user_expr)
190 BOOST_YAP_USER_UDT_UNARY_OPERATOR(logical_not, ::user_expr, is_vector)
/third_party/mindspore/tests/vm_impl/
Dvm_interface.py62 setattr(vm, 'logical_not', logical_not)
/third_party/boost/boost/compute/functional/
Dlogical.hpp192 struct logical_not : public unary_function<T, int> struct
/third_party/boost/libs/compute/include/boost/compute/functional/
Dlogical.hpp192 struct logical_not : public unary_function<T, int> struct
/third_party/boost/boost/xpressive/detail/static/transforms/
Das_quantifier.hpp50 struct min_type<proto::tag::logical_not> : mpl::integral_c<uint_t, 0> {};
62 struct max_type<proto::tag::logical_not> : mpl::integral_c<uint_t, 1> {};
/third_party/boost/libs/typeof/test/
Dstd.cpp63 BOOST_STATIC_ASSERT(boost::type_of::test<logical_not<int> >::value);
/third_party/boost/boost/yap/
Dalgorithm_fwd.hpp33 logical_not = 7, ///< \c ! enumerator

123