Home
last modified time | relevance | path

Searched refs:bprop_hash (Results 1 – 5 of 5) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/frontend/optimizer/ad/
Dkprim.cc116 static std::string bprop_hash = std::string(); in GetBpropHash() local
117 if (bprop_hash.empty()) { in GetBpropHash()
123 bprop_hash = system::sha256::GetHashFromDir(realpath.value()); in GetBpropHash()
125 return bprop_hash; in GetBpropHash()
139 if (bprop_fg != nullptr && bprop_fg->bprop_hash() != GetBpropHash()) { in ImportBpropFromMindIR()
142 << "bprop_fg hash: " << bprop_fg->bprop_hash() << "\n" in ImportBpropFromMindIR()
/third_party/mindspore/mindspore/core/ir/
Dfunc_graph.h405 std::string bprop_hash() const { return bprop_hash_; } in bprop_hash() function
406 void set_bprop_hash(const std::string &bprop_hash) { bprop_hash_ = bprop_hash; } in set_bprop_hash() argument
/third_party/mindspore/mindspore/core/proto/
Dmind_ir.proto90 optional string bprop_hash = 7; field
/third_party/mindspore/mindspore/ccsrc/transform/express_ir/
Dmindir_exporter.cc183 graph_proto->set_bprop_hash(func_graph->bprop_hash()); in BuildModel()
/third_party/mindspore/mindspore/core/load_mindir/
Danf_model_parser.cc1053 outputFuncGraph->set_bprop_hash(importProto.bprop_hash()); in BuildFuncGraph()