Home
last modified time | relevance | path

Searched refs:AbstractListPtr (Results 1 – 8 of 8) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/frontend/operator/composite/
Dunpack_call.cc38 using mindspore::abstract::AbstractListPtr;
70 auto arg_list = args_spec_list[index]->cast<AbstractListPtr>(); in GenerateFuncGraph()
Dlist_append_operation.cc34 abstract::AbstractListPtr arg0_list = dyn_cast<abstract::AbstractList>(arg0); in GenerateFuncGraph()
/third_party/mindspore/mindspore/core/ops/
Daddn.cc35 : input_args[0]->cast<abstract::AbstractListPtr>()->elements(); in AddNInferShape()
73 : input_args[0]->cast<abstract::AbstractListPtr>()->elements(); in AddNInferType()
/third_party/mindspore/tests/ut/cpp/pipeline/static_analysis/
Ddata_test.cc173 AbstractListPtr l1 = std::make_shared<AbstractList>(xx); in TEST_F()
174 AbstractListPtr l2 = std::make_shared<AbstractList>(xx); in TEST_F()
Dprim_test.cc72 static AbstractListPtr ListShapeOf(std::initializer_list<int64_t> vals) { in ListShapeOf()
/third_party/mindspore/mindspore/ccsrc/frontend/operator/
Dops_front_infer_function.cc299 AbstractListPtr l_ptr = dyn_cast<AbstractList>(args_spec_list[i]); in InferImplListMap()
322 AbstractListPtr lst = CheckArg<AbstractList>(op_name, args_spec_list, 1); in InferImplListReduce()
/third_party/mindspore/mindspore/core/abstract/
Dprim_structures.cc320 AbstractListPtr list = CheckArg<AbstractList>(op_name, args_spec_list, 0); in InferImplListAppend()
Dabstract_value.h450 using AbstractListPtr = std::shared_ptr<AbstractList>; variable