all_reduce.h 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Copyright (c) 2020 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

#ifdef PADDLE_WITH_NCCL

#include <cuda.h>
#include <cuda_runtime.h>
#include <nccl.h>
22 23
#include <string>
#include <utility>
24 25

#include "paddle/fluid/framework/lod_tensor.h"
26
#include "paddle/fluid/framework/scope.h"
27 28 29
#include "paddle/fluid/framework/selected_rows.h"
#include "paddle/fluid/framework/variable.h"
#include "paddle/fluid/imperative/nccl_context.h"
30 31 32
#include "paddle/fluid/platform/device_context.h"
#include "paddle/fluid/platform/nccl_helper.h"
#include "paddle/fluid/string/string_helper.h"
33

W
wanghuancoder 已提交
34 35 36 37 38 39
namespace paddle {
namespace framework {
class Variable;
}  // namespace framework
}  // namespace paddle

40 41 42
namespace paddle {
namespace imperative {

W
wanghuancoder 已提交
43 44
struct ParallelStrategy;

45 46 47
void AllReduce(const framework::Variable &src, framework::Variable *dst,
               const ParallelStrategy &strategy);

48
void AllReduce(const framework::Variable &src, framework::Variable *dst,
49 50
               const ParallelStrategy &strategy, int ring_id,
               bool use_calc_stream);
51

52 53 54 55
}  // namespace imperative
}  // namespace paddle

#endif