You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.3 KiB
101 lines
3.3 KiB
// Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#pragma once
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "paddle/fluid/framework/details/build_strategy.h"
|
|
#include "paddle/fluid/framework/details/multi_devices_helper.h"
|
|
#include "paddle/fluid/framework/ir/graph.h"
|
|
|
|
namespace paddle {
|
|
namespace platform {
|
|
class NCCLContextMap;
|
|
}
|
|
|
|
namespace framework {
|
|
class Scope;
|
|
namespace details {
|
|
|
|
class MultiDevSSAGraphBuilder : public ir::Pass {
|
|
protected:
|
|
std::unique_ptr<ir::Graph> ApplyImpl(
|
|
std::unique_ptr<ir::Graph> graph) const override;
|
|
|
|
private:
|
|
void CreateOpHandleIOs(ir::Graph *result, ir::Node *node,
|
|
size_t device_id) const;
|
|
void Init() const;
|
|
|
|
#ifdef PADDLE_WITH_CUDA
|
|
mutable platform::NCCLContextMap *nccl_ctxs_;
|
|
#endif
|
|
|
|
int GetVarDeviceID(const ir::Graph &graph, const std::string &varname) const;
|
|
|
|
bool IsScaleLossOp(ir::Node *node) const;
|
|
|
|
int CreateRPCOp(ir::Graph *result, ir::Node *node) const;
|
|
int CreateDistTrainOp(ir::Graph *result, ir::Node *node) const;
|
|
|
|
std::vector<std::string> FindDistTrainSendVars(
|
|
const std::vector<ir::Node *> &nodes) const;
|
|
|
|
std::vector<std::string> FindDistTrainRecvVars(
|
|
const std::vector<ir::Node *> &nodes) const;
|
|
|
|
void CreateComputationalOps(ir::Graph *result, ir::Node *node,
|
|
size_t num_places) const;
|
|
|
|
void CreateScaleLossGradOp(ir::Graph *result,
|
|
const std::string &loss_grad_name) const;
|
|
|
|
VarHandle *CreateReduceOp(ir::Graph *result, const std::string &og,
|
|
int dst_dev_id) const;
|
|
void CreateComputationalOp(ir::Graph *result, ir::Node *node,
|
|
int dev_id) const;
|
|
|
|
int GetOpDeviceID(const ir::Graph &graph, ir::Node *node) const;
|
|
|
|
void InsertAllReduceOp(ir::Graph *result, const std::string &og) const;
|
|
|
|
void InsertDataBalanceOp(ir::Graph *result,
|
|
const std::vector<std::string> &datas) const;
|
|
|
|
void CreateBroadcastOp(ir::Graph *result, const std::string &p_name,
|
|
size_t src_dev_id) const;
|
|
|
|
bool IsSparseGradient(const std::string &og) const;
|
|
|
|
size_t GetAppropriateDeviceID(
|
|
const std::vector<std::string> &var_names) const;
|
|
|
|
void SetCommunicationContext(OpHandleBase *op_handle,
|
|
const platform::Place &p) const;
|
|
|
|
mutable std::string loss_var_name_;
|
|
mutable std::vector<platform::Place> places_;
|
|
mutable std::vector<Scope *> local_scopes_;
|
|
mutable std::unordered_set<std::string> grad_names_;
|
|
|
|
mutable BuildStrategy strategy_;
|
|
mutable std::unordered_map<std::string, VarDesc *> all_vars_;
|
|
mutable std::vector<int64_t> balance_vars_;
|
|
};
|
|
} // namespace details
|
|
} // namespace framework
|
|
} // namespace paddle
|