Home
last modified time | relevance | path

Searched refs:IsWeightAggrDone (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/fl/server/
Dexecutor.h88 bool IsWeightAggrDone(const std::vector<std::string> &param_names);
Dexecutor.cc233 bool Executor::IsAllWeightAggregationDone() { return IsWeightAggrDone(param_names_); } in IsAllWeightAggregationDone()
235 bool Executor::IsWeightAggrDone(const std::vector<std::string> &param_names) { in IsWeightAggrDone() function in mindspore::fl::server::Executor
/third_party/mindspore/mindspore/ccsrc/fl/server/kernel/round/
Dpull_weight_kernel.cc93 if (!executor_->IsWeightAggrDone(weight_names) || !executor_->unmasked()) { in PullWeight()