Home
last modified time | relevance | path

Searched refs:eval_impl (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/libs/hana/include/boost/hana/fwd/
Deval.hpp47 struct eval_impl : eval_impl<T, when<true>> { };
/third_party/boost/boost/hana/fwd/
Deval.hpp47 struct eval_impl : eval_impl<T, when<true>> { };
/third_party/mindspore/tests/ut/cpp/abstract/
Dabstract_test.cc96 auto eval_impl = GetPrimitiveInferImpl(prim::kPrimMakeRecord); in TEST_F() local
97 ASSERT_TRUE(nullptr != eval_impl.infer_shape_impl_); in TEST_F()
99 AbstractBasePtr new_cls = eval_impl.infer_shape_impl_(nullptr, prim::kPrimMakeRecord, args_list); in TEST_F()
/third_party/boost/boost/hana/
Deval.hpp25 return eval_impl<typename hana::tag_of<Expr>::type>::apply( in operator ()()
32 struct eval_impl<T, when<condition>> : default_ { struct
Dlazy.hpp115 struct eval_impl<lazy_tag> { struct
/third_party/boost/libs/hana/include/boost/hana/
Deval.hpp25 return eval_impl<typename hana::tag_of<Expr>::type>::apply( in operator ()()
32 struct eval_impl<T, when<condition>> : default_ { struct
Dlazy.hpp115 struct eval_impl<lazy_tag> { struct
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/static_analysis/
Dprim.h35 StandardPrimEvaluator(const PrimitivePtr &primitive, const StandardPrimitiveImplReg &eval_impl) in StandardPrimEvaluator() argument
36 : TrivialPrimEvaluator("StandardPrimEvaluator"), prim_(primitive), eval_impl_(eval_impl) {} in StandardPrimEvaluator()
Dstatic_analysis.cc376 auto eval_impl = GetPrimitiveInferImpl(prim); in GetPrimEvaluator() local
377 if (eval_impl.infer_shape_impl_ != nullptr) { in GetPrimEvaluator()
378 return std::make_shared<StandardPrimEvaluator>(prim, eval_impl); in GetPrimEvaluator()
Dprim.cc774 …orPtr InitStandardPrimEvaluator(PrimitivePtr primitive, const StandardPrimitiveImplReg eval_impl) { in InitStandardPrimEvaluator() argument
775 EvaluatorPtr prim_evaluator = std::make_shared<StandardPrimEvaluator>(primitive, eval_impl); in InitStandardPrimEvaluator()