Home
last modified time | relevance | path

Searched refs:hyper_param_count (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/irpass/
Dless_batch_normalization.cc341 size_t hyper_param_count = root_graph->hyper_param_count(); in RemoveBatchNormalizetionNotUseParameters() local
342 if (remove_param_count > hyper_param_count) { in RemoveBatchNormalizetionNotUseParameters()
346 hyper_param_count = hyper_param_count - remove_param_count; in RemoveBatchNormalizetionNotUseParameters()
347 root_graph->set_hyper_param_count(hyper_param_count); in RemoveBatchNormalizetionNotUseParameters()
/third_party/mindspore/mindspore/ccsrc/pipeline/jit/parse/
Dresolve.cc172 size_t hyper_param_count = top_graph->hyper_param_count(); in ConvertLoadedGraph() local
173 top_graph->set_hyper_param_count(hyper_param_count + 1); in ConvertLoadedGraph()
/third_party/mindspore/mindspore/ccsrc/utils/
Dconvert_utils_py.cc520 if ((args.size() + func_graph->hyper_param_count()) != params.size()) { in IsGraphOutputValueNodeOrParameter()
521 …TION) << "Input size " << args.size() << " add Parameter count " << func_graph->hyper_param_count() in IsGraphOutputValueNodeOrParameter()
530 if (index >= args.size() + func_graph->hyper_param_count()) { in IsGraphOutputValueNodeOrParameter()
532 … << " add Parameter count " << func_graph->hyper_param_count() << "."; in IsGraphOutputValueNodeOrParameter()
/third_party/mindspore/mindspore/core/ir/
Dfunc_graph_cloner.cc229 (*target_func_graph)->set_hyper_param_count(func_graph->hyper_param_count()); in SetFuncGraphInfo()
753 new_func_graph->set_hyper_param_count(func_graph->hyper_param_count()); in TransformableClone()
Dfunc_graph_extends.cc208 for (size_t i = 0; i < specialized_graph->parameters().size() - hyper_param_count(); ++i) { in GenerateDefaultValue()
Dfunc_graph.h224 size_t hyper_param_count() const { return hyper_param_count_; } in hyper_param_count() function
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/pipeline_transformer/
Dpipeline_transformer.cc994 root_->set_hyper_param_count(root_->hyper_param_count() - del_num); in ElimParameter()