Home
last modified time | relevance | path

Searched refs:metrics_file_path_ (Results 1 – 2 of 2) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/fl/server/
Diteration_metrics.cc57 metrics_file_path_ = JsonGetKeyWithException<std::string>(value_json, ps::kStoreFilePath); in Initialize()
58 auto realpath = Common::CreatePrefixPath(metrics_file_path_.c_str()); in Initialize()
60 MS_LOG(EXCEPTION) << "Creating path for " << metrics_file_path_ << " failed."; in Initialize()
71 metrics_file_.open(metrics_file_path_, std::ios::ate | std::ios::out); in Summarize()
94 MS_LOG(INFO) << "Clear the old metrics file " << metrics_file_path_; in Clear()
96 metrics_file_.open(metrics_file_path_, std::ios::ate | std::ios::out); in Clear()
Diteration_metrics.h100 std::string metrics_file_path_; variable