diff --git a/paddle/fluid/distributed/fleet.cc b/paddle/fluid/distributed/fleet.cc index e635a730b0335705156029a80d6c879b998ced77..5d6afa928abbfc2c246d4e809bf162f65a957784 100644 --- a/paddle/fluid/distributed/fleet.cc +++ b/paddle/fluid/distributed/fleet.cc @@ -508,7 +508,7 @@ void FleetWrapper::ShrinkDenseTable(int table_id, Scope* scope, if (name.find("batch_sum") != std::string::npos) { Variable* var = scope->FindVar(name); CHECK(var != nullptr) << "var[" << name << "] not found"; - VLOG(0) << "prepare shrink dense batch_sum"; + VLOG(3) << "prepare shrink dense batch_sum"; LoDTensor* tensor = var->GetMutable(); float* g = tensor->data(); diff --git a/paddle/fluid/distributed/service/brpc_ps_server.cc b/paddle/fluid/distributed/service/brpc_ps_server.cc index 02b4087de38621fa8ebd448a4f8067993a105108..7af7a436364d279de032c238b0e7734c3e758f6e 100644 --- a/paddle/fluid/distributed/service/brpc_ps_server.cc +++ b/paddle/fluid/distributed/service/brpc_ps_server.cc @@ -76,16 +76,13 @@ uint64_t BrpcPsServer::start(const std::string &ip, uint32_t port) { } } - VLOG(0) << "BrpcPsServer::start registe_ps_server"; _environment->registe_ps_server(ip, port, _rank); - VLOG(0) << "BrpcPsServer::start wait"; cv_.wait(lock, [&] { return stoped_; }); PSHost host; host.ip = ip; host.port = port; host.rank = _rank; - VLOG(0) << "BrpcPsServer::start return host.rank"; return host.rank; } @@ -461,7 +458,7 @@ int32_t BrpcPsService::save_one_table(Table *table, int32_t feasign_size = 0; - VLOG(0) << "save one table " << request.params(0) << " " << request.params(1); + VLOG(3) << "save table " << request.params(0) << " " << request.params(1); feasign_size = table->save(request.params(0), request.params(1)); if (feasign_size < 0) { set_response_code(response, -1, "table save failed"); @@ -504,7 +501,7 @@ int32_t BrpcPsService::shrink_table(Table *table, set_response_code(response, -1, "table shrink failed"); return -1; } - VLOG(0) << "Pserver Shrink Finished"; + VLOG(3) << "Pserver Shrink Finished"; return 0; } diff --git a/paddle/fluid/distributed/service/communicator.cc b/paddle/fluid/distributed/service/communicator.cc index 577686972990f4ae482ac9e9b8c6cd1053d0ead9..1cffb16a0a4ffdde35897e667b00d368a6349a5f 100644 --- a/paddle/fluid/distributed/service/communicator.cc +++ b/paddle/fluid/distributed/service/communicator.cc @@ -52,7 +52,7 @@ inline double GetCurrentUS() { Communicator::Communicator() {} void Communicator::init_gflag(const std::string &gflags) { - VLOG(0) << "Init With Gflags:" << gflags; + VLOG(3) << "Init With Gflags:" << gflags; std::vector flags = paddle::string::split_string(gflags); if (flags.size() < 1) { flags.push_back("-max_body_size=314217728"); diff --git a/paddle/fluid/distributed/service/communicator.h b/paddle/fluid/distributed/service/communicator.h index 6544ede73cca12012ebb095e93811be00fdae8da..490d4ebe9a5a987c415ffa952883e3eef52570d5 100644 --- a/paddle/fluid/distributed/service/communicator.h +++ b/paddle/fluid/distributed/service/communicator.h @@ -194,10 +194,10 @@ class Communicator { Communicator(); explicit Communicator(const std::map &envs_) { - VLOG(0) << "Communicator Init Envs"; + VLOG(3) << "Communicator Init Envs"; for (auto &iter : envs_) { envs[iter.first] = iter.second; - VLOG(0) << iter.first << ": " << iter.second; + VLOG(3) << iter.first << ": " << iter.second; } barrier_table_id_ = std::stoi(envs.at("barrier_table_id")); trainer_id_ = std::stoi(envs.at("trainer_id")); @@ -431,7 +431,7 @@ class HalfAsyncCommunicator : public AsyncCommunicator { need_global_step_ = static_cast(std::stoi(envs.at("need_global_step"))); - VLOG(0) << "HalfAsyncCommunicator Initialized"; + VLOG(1) << "HalfAsyncCommunicator Initialized"; } void MainThread() override; @@ -476,7 +476,7 @@ class SyncCommunicator : public HalfAsyncCommunicator { need_global_step_ = static_cast(std::stoi(envs.at("need_global_step"))); - VLOG(0) << "SyncCommunicator Initialized"; + VLOG(1) << "SyncCommunicator Initialized"; } void BarrierSend(); @@ -520,7 +520,7 @@ class GeoCommunicator : public AsyncCommunicator { // id_queue's size max_merge_var_num_ = std::stoi(envs.at("communicator_max_merge_var_num")); send_queue_size_ = max_merge_var_num_; - VLOG(0) << "GeoCommunicator Initialized"; + VLOG(1) << "GeoCommunicator Initialized"; } void Send(const std::vector &var_names, diff --git a/paddle/fluid/distributed/service/heter_client.cc b/paddle/fluid/distributed/service/heter_client.cc index 87c71979ee6bcc222f6637b66ddd4fa3c035f841..59de8215e1896db6e572d7c0432cbfa28b55374e 100644 --- a/paddle/fluid/distributed/service/heter_client.cc +++ b/paddle/fluid/distributed/service/heter_client.cc @@ -42,7 +42,7 @@ void HeterClient::MainThread() { void HeterClient::Stop() { running_ = false; if (!is_initialized_) { - VLOG(0) << "HeterClient is not inited, do nothing"; + VLOG(3) << "HeterClient is not inited, do nothing"; } else { if (main_thread_) { auto status = StopHeterWorker(); @@ -50,20 +50,20 @@ void HeterClient::Stop() { main_thread_->join(); main_thread_.reset(nullptr); } - VLOG(1) << "HeterClient Stop Done"; + VLOG(3) << "HeterClient Stop Done"; } } void HeterClient::FinalizeWorker() { running_ = false; if (!is_initialized_) { - VLOG(0) << "HeterClient is not inited, do nothing"; + VLOG(3) << "HeterClient is not inited, do nothing"; } else { if (main_thread_) { main_thread_->join(); main_thread_.reset(nullptr); } - VLOG(1) << "HeterClient Stop Done"; + VLOG(3) << "HeterClient Stop Done"; } } diff --git a/paddle/fluid/distributed/service/heter_server.cc b/paddle/fluid/distributed/service/heter_server.cc index ea2ca09545a49d10e269656a52abce526c1945a1..f61472e81a1ba5159a729b7d6a356062566e29de 100644 --- a/paddle/fluid/distributed/service/heter_server.cc +++ b/paddle/fluid/distributed/service/heter_server.cc @@ -95,7 +95,7 @@ int32_t HeterService::stop_heter_worker(const PsRequestMessage& request, stop_cpu_worker_set_.insert(client_id); if (stop_cpu_worker_set_.size() == fan_in_) { is_exit_ = true; - VLOG(0) << "Stop heter Service done."; + VLOG(3) << "Stop heter Service done."; } return 0; } diff --git a/paddle/fluid/distributed/service/heter_server.h b/paddle/fluid/distributed/service/heter_server.h index c1c6478787fcb6af451d9b124cb65359e69bdf18..0f1792b5c9207fc7fb7d32441cae47db8b04a4dd 100644 --- a/paddle/fluid/distributed/service/heter_server.h +++ b/paddle/fluid/distributed/service/heter_server.h @@ -136,7 +136,7 @@ class HeterServer { virtual ~HeterServer() {} void Stop() { - VLOG(0) << "HeterServer Stop()"; + VLOG(3) << "HeterServer Stop()"; std::unique_lock lock(mutex_); stoped_ = true; cv_.notify_all(); diff --git a/paddle/fluid/distributed/table/common_dense_table.cc b/paddle/fluid/distributed/table/common_dense_table.cc index 96e1ef0ee04ed0621de3350bbad528c03b05ca24..96bc104cb812bed2887961210dfb8a99cf182b66 100644 --- a/paddle/fluid/distributed/table/common_dense_table.cc +++ b/paddle/fluid/distributed/table/common_dense_table.cc @@ -91,7 +91,7 @@ int32_t CommonDenseTable::initialize_optimizer() { } else { VLOG(0) << "init optimizer failed"; } - VLOG(0) << "init optimizer " << name << " done"; + VLOG(3) << "init optimizer " << name << " done"; return 0; } diff --git a/paddle/fluid/distributed/table/common_dense_table.h b/paddle/fluid/distributed/table/common_dense_table.h index 40a53bb53fb75481fc4a7f23c249e7e676668fa2..5b4e6895ccd65d7183fe257c72879d385dadc202 100644 --- a/paddle/fluid/distributed/table/common_dense_table.h +++ b/paddle/fluid/distributed/table/common_dense_table.h @@ -45,15 +45,12 @@ class CommonDenseTable : public DenseTable { virtual int32_t set_global_lr(float* lr) override; int32_t load(const std::string& path, const std::string& param) override { - VLOG(0) << "Dense table may load by " - "paddle.distributed.fleet.init_server"; + VLOG(0) << "WARNING: dense variables will load on No.0 trainer"; return 0; } int32_t save(const std::string& path, const std::string& param) override { - VLOG(0) - << "Dense table may be saved by " - "paddle.distributed.fleet.save_persistables/save_inference_model"; + VLOG(0) << "WARNING: dense variables will save on No.0 trainer"; return 0; } diff --git a/paddle/fluid/distributed/table/common_sparse_table.cc b/paddle/fluid/distributed/table/common_sparse_table.cc index 56372ac84400666c265b167adf117b734dda6307..f1858dd18940c9a8adbde11b3dcb64152b4d0603 100644 --- a/paddle/fluid/distributed/table/common_sparse_table.cc +++ b/paddle/fluid/distributed/table/common_sparse_table.cc @@ -166,7 +166,7 @@ int64_t LoadFromText(const std::string& valuepath, const std::string& metapath, auto id = std::stoull(values[0]); if (id % pserver_num != pserver_id) { - VLOG(0) << "will not load " << values[0] << " from " << valuepath + VLOG(3) << "will not load " << values[0] << " from " << valuepath << ", please check id distribution"; continue; } @@ -259,7 +259,7 @@ int32_t CommonSparseTable::initialize_value() { } } - VLOG(0) << "has " << feasigns.size() << " ids need to be pre inited"; + VLOG(3) << "has " << feasigns.size() << " ids need to be pre inited"; auto buckets = bucket(feasigns.size(), 10); for (int x = 0; x < 10; ++x) { @@ -291,10 +291,10 @@ int32_t CommonSparseTable::initialize_optimizer() { optimizer_ = std::make_shared(value_names_, value_dims_, value_offsets_, value_idx_); } else { - VLOG(0) << "init optimizer failed"; + VLOG(3) << "init optimizer failed"; } - VLOG(0) << "init optimizer " << name << " done"; + VLOG(3) << "init optimizer " << name << " done"; return 0; } @@ -307,7 +307,7 @@ int32_t CommonSparseTable::set_global_lr(float* lr) { int32_t CommonSparseTable::load(const std::string& path, const std::string& param) { rwlock_->WRLock(); - VLOG(0) << "sparse table load with " << path << " with meta " << param; + VLOG(3) << "sparse table load with " << path << " with meta " << param; LoadFromText(path, param, _shard_idx, _shard_num, task_pool_size_, &shard_values_); rwlock_->UNLock(); @@ -318,7 +318,7 @@ int32_t CommonSparseTable::save(const std::string& dirname, const std::string& param) { rwlock_->WRLock(); int mode = std::stoi(param); - VLOG(0) << "sparse table save: " << dirname << " mode: " << mode; + VLOG(3) << "sparse table save: " << dirname << " mode: " << mode; auto varname = _config.common().table_name(); std::string var_store = @@ -534,11 +534,11 @@ int32_t CommonSparseTable::flush() { return 0; } int32_t CommonSparseTable::shrink(const std::string& param) { rwlock_->WRLock(); int threshold = std::stoi(param); - VLOG(0) << "sparse table shrink: " << threshold; + VLOG(3) << "sparse table shrink: " << threshold; for (int shard_id = 0; shard_id < task_pool_size_; ++shard_id) { // shrink - VLOG(0) << shard_id << " " << task_pool_size_ << " begin shrink"; + VLOG(4) << shard_id << " " << task_pool_size_ << " begin shrink"; shard_values_[shard_id]->Shrink(threshold); } rwlock_->UNLock();