146 lines
4.8 KiB
C++
146 lines
4.8 KiB
C++
// Copyright (c) 2022 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 <map>
|
|
#include <vector>
|
|
|
|
#include "paddle/fluid/distributed/collective/process_group.h"
|
|
#include "paddle/fluid/eager/accumulation/accumulation_node.h"
|
|
#include "paddle/fluid/eager/api/utils/hook_utils.h"
|
|
#include "paddle/fluid/eager/autograd_meta.h"
|
|
#include "paddle/fluid/eager/utils.h"
|
|
#include "paddle/phi/api/include/api.h"
|
|
#include "paddle/phi/api/include/fused_api.h"
|
|
#include "paddle/phi/api/include/tensor.h"
|
|
#include "paddle/phi/common/data_type.h"
|
|
#include "paddle/phi/core/platform/device/gpu/gpu_info.h"
|
|
#include "paddle/phi/kernels/funcs/concat_and_split_functor.h"
|
|
#include "paddle/phi/kernels/funcs/math_function.h"
|
|
#include "paddle/utils/string/string_helper.h"
|
|
|
|
namespace paddle {
|
|
namespace distributed {
|
|
using Tensor = paddle::Tensor;
|
|
using Scalar = paddle::experimental::ScalarBase<paddle::Tensor>;
|
|
using IntArray = paddle::experimental::IntArrayBase<paddle::Tensor>;
|
|
using Backend = paddle::experimental::Backend;
|
|
|
|
std::vector<std::vector<size_t>> Eager_AssignGroupBySize(
|
|
const std::vector<Tensor>,
|
|
const std::vector<bool> &is_sparse_gradient,
|
|
const std::vector<size_t> &group_size_limits,
|
|
const std::vector<int64_t> &tensor_indices = {});
|
|
|
|
class EagerGroup {
|
|
public:
|
|
Tensor dense_contents_;
|
|
Tensor sparse_contents_;
|
|
bool is_sparse_ = false;
|
|
|
|
// for concat kernel
|
|
std::vector<DenseTensor> dense_tensors_;
|
|
std::vector<int64_t> length_;
|
|
int64_t all_length_{0};
|
|
std::vector<IntArray> origin_shapes_;
|
|
|
|
// Global indices of participating tensors in the group
|
|
std::vector<size_t> tensor_indices_;
|
|
|
|
// Number of params that haven't been ready. When it is 0, it means
|
|
// the group is ready.
|
|
size_t pending_ = -1;
|
|
|
|
// external message of group
|
|
DataType dtype_;
|
|
|
|
// help to sync
|
|
std::shared_ptr<ProcessGroup::Task> task;
|
|
|
|
// context is used to select the stream for concat
|
|
void ConcatTensors(const phi::Place &);
|
|
|
|
// context is used to select the stream for split
|
|
|
|
void SplitTensors(const phi::DeviceContext &);
|
|
|
|
friend std::ostream &operator<<(std::ostream &, const EagerGroup &);
|
|
};
|
|
|
|
struct TensorLocator {
|
|
// record the index in groups_
|
|
size_t group_index;
|
|
size_t inside_group_index;
|
|
};
|
|
|
|
class EagerReducer {
|
|
public:
|
|
explicit EagerReducer(
|
|
const std::vector<Tensor> tensors,
|
|
const std::vector<std::vector<size_t>> &group_indices,
|
|
const std::vector<bool> &is_sparse_gradient,
|
|
std::shared_ptr<distributed::ProcessGroup> process_group,
|
|
const std::vector<size_t> &group_size_limits,
|
|
bool find_unused_parameters);
|
|
|
|
virtual ~EagerReducer() {}
|
|
|
|
std::shared_ptr<egr::GradNodeBase> GetGradNodeFromTensor(Tensor *tensor);
|
|
|
|
void InitializeGroups(const std::vector<std::vector<size_t>> &group_indices);
|
|
void InitializeDenseGroups(const std::vector<size_t> &tensor_indices_,
|
|
EagerGroup *p_group);
|
|
void PrepareForBackward(const std::vector<Tensor> &outputs);
|
|
void AddDistHook(size_t var_index);
|
|
void MarkVarReady(const size_t var_index, const bool is_used_var);
|
|
void MarkGroupReady(const size_t group_index);
|
|
void FusedAllReduceSchedule(EagerGroup *group, const int curr_group_index);
|
|
void AllReduceSparse(EagerGroup *group, const int curr_group_index);
|
|
void FinalizeBackward();
|
|
void TraverseBackwardGraph(const std::vector<Tensor> &outputs);
|
|
void ProcessUnusedDenseVars();
|
|
bool HasGrad(size_t var_index);
|
|
|
|
private:
|
|
std::vector<Tensor> tensors_;
|
|
std::vector<std::vector<size_t>> group_indices_;
|
|
std::vector<bool> is_sparse_gradient_;
|
|
std::shared_ptr<distributed::ProcessGroup> process_group_;
|
|
std::vector<size_t> group_size_limits_;
|
|
|
|
std::vector<EagerGroup> groups_;
|
|
std::vector<TensorLocator> variable_locators_;
|
|
phi::Place inner_place_;
|
|
size_t next_group_ = 0;
|
|
int64_t nranks_ = -1;
|
|
|
|
bool grad_need_hooks_{false};
|
|
|
|
std::vector<bool> vars_marked_ready_;
|
|
std::vector<int32_t> local_used_vars_;
|
|
|
|
// Following variables are to help unused vars
|
|
std::vector<size_t> unused_vars_;
|
|
std::map<egr::GradNodeBase *, size_t> gradnode_index_map_;
|
|
bool has_marked_unused_vars_{false};
|
|
bool find_unused_vars_each_step_{false};
|
|
bool find_unused_vars_once_{true};
|
|
bool groups_need_finalize_{false};
|
|
Tensor global_used_vars_;
|
|
};
|
|
|
|
} // namespace distributed
|
|
} // namespace paddle
|