Home
last modified time | relevance | path

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

/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/
Dparam_info_py.cc23 REGISTER_PYBIND_DEFINE(ParamInfo, ([](const py::module *m) { in __anon6a8b7cef0102()
24 (void)py::class_<ParamInfo, ParamInfoPtr>(*m, "ParamInfo") in __anon6a8b7cef0102()
26 .def("clone", &ParamInfo::Clone) in __anon6a8b7cef0102()
27 .def_property("name", &ParamInfo::name, &ParamInfo::set_name) in __anon6a8b7cef0102()
28 … .def_property("requires_grad", &ParamInfo::requires_grad, &ParamInfo::set_requires_grad) in __anon6a8b7cef0102()
29 … .def_property("init_in_server", &ParamInfo::init_in_server, &ParamInfo::set_init_in_server) in __anon6a8b7cef0102()
30 .def_property("layerwise_parallel", &ParamInfo::layerwise_parallel, in __anon6a8b7cef0102()
31 &ParamInfo::set_layerwise_parallel) in __anon6a8b7cef0102()
32 .def_property("parallel_optimizer", &ParamInfo::parallel_optimizer, in __anon6a8b7cef0102()
33 &ParamInfo::set_parallel_optimizer) in __anon6a8b7cef0102()
[all …]
/third_party/mindspore/mindspore/core/ir/
Dparam_info.h28 class ParamInfo; variable
29 using ParamInfoPtr = std::shared_ptr<ParamInfo>;
31 class ParamInfo {
33 ParamInfo() {} in ParamInfo() function
35 ParamInfo(const ParamInfo &other) = default;
37 virtual ~ParamInfo() = default;
67 auto clone = std::make_shared<ParamInfo>(*this); in Clone()
Danf.h84 class ParamInfo; variable
85 using ParamInfoPtr = std::shared_ptr<ParamInfo>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLSteensAliasAnalysis.cpp176 auto ParamInfo = Sets.find(InstantiatedValue{&Param, 0}); in FunctionInfo() local
177 if (ParamInfo.hasValue()) in FunctionInfo()
178 AddToRetParamRelations(I + 1, ParamInfo->Index); in FunctionInfo()
DStackSafetyAnalysis.cpp116 struct ParamInfo { struct
120 explicit ParamInfo(unsigned PointerSize, const Argument *Arg) in ParamInfo() function
126 raw_ostream &operator<<(raw_ostream &OS, const ParamInfo &P) { in operator <<()
153 SmallVector<ParamInfo, 4> Params;
386 ParamInfo &PS = Info.Params.back(); in run()
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/cache_embedding/
Dcache_embedding.cc51 ParamInfoPtr new_param_info = std::make_shared<ParamInfo>(); in AddCacheParameters()
255 ParamInfoPtr new_param_info = std::make_shared<ParamInfo>(); in InitHashMap()
268 ParamInfoPtr new_param_info = std::make_shared<ParamInfo>(); in InitStep()
535 ParamInfoPtr new_param_info = std::make_shared<ParamInfo>(); in CreateOutputNodeParam()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.h490 struct ParamInfo { struct
494 ParamInfo(LocTy loc, Value *v, AttributeSet attrs) in ParamInfo() function
497 bool ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
DLLParser.cpp2435 bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList, in ParseParameterList()
2474 ArgList.push_back(ParamInfo( in ParseParameterList()
6054 SmallVector<ParamInfo, 16> ArgList; in ParseInvoke()
6364 SmallVector<ParamInfo, 16> ArgList; in ParseCallBr()
6787 SmallVector<ParamInfo, 16> ArgList; in ParseCall()
/third_party/mindspore/mindspore/common/
Dparameter.py20 from .._c_expression import ParamInfo
134 self.param_info = ParamInfo()
/third_party/mindspore/mindspore/core/load_mindir/
Danf_model_parser.cc276 ParamInfoPtr param_info = std::make_shared<ParamInfo>(); in BuildParameterForFuncGraph()