message_bus.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright (c) 2021 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

17
#include <condition_variable>
18
#include <mutex>
19 20 21 22
#include <string>
#include <thread>
#include <unordered_map>

23 24
#if defined(PADDLE_WITH_DISTRIBUTE) && defined(PADDLE_WITH_PSCORE) && \
    !defined(PADDLE_WITH_ASCEND_CL)
25 26
#include "brpc/channel.h"
#include "brpc/server.h"
27
#include "paddle/fluid/distributed/fleet_executor/message_service.h"
28 29 30
#endif

#include "paddle/fluid/distributed/fleet_executor/interceptor_message.pb.h"
31 32
#include "paddle/fluid/platform/enforce.h"
#include "paddle/fluid/platform/errors.h"
33 34 35 36 37 38 39
#include "paddle/fluid/platform/macros.h"

namespace paddle {
namespace distributed {

class Carrier;

40
// A singleton MessageBus
41 42
class MessageBus final {
 public:
43 44
  MessageBus() = default;
  ~MessageBus();
45

46
  void Init(int64_t rank,
47 48
            const std::unordered_map<int64_t, std::string>& rank_to_addr,
            const std::string& addr);
49

50 51
  bool IsInit() const;

52
  // called by Interceptor, send InterceptorMessage to dst
53
  bool Send(int64_t dst_rank, const InterceptorMessage& interceptor_message);
54

55 56
  void IncreaseBarrierCount();
  void Barrier();
57
  bool DispatchMsgToCarrier(const InterceptorMessage& interceptor_message);
58

59
 private:
60
  DISABLE_COPY_AND_ASSIGN(MessageBus);
61

62 63 64
  // function keep listen the port and handle the message
  void ListenPort();

65
  const std::string& GetAddr(int64_t rank) const;
66

67 68
#if defined(PADDLE_WITH_DISTRIBUTE) && defined(PADDLE_WITH_PSCORE) && \
    !defined(PADDLE_WITH_ASCEND_CL)
69
  // send the message inter rank (dst is different rank with src)
70 71
  bool SendInterRank(int64_t dst_rank,
                     const InterceptorMessage& interceptor_message);
72 73
#endif

74 75
  bool is_init_{false};

76
  int64_t rank_;
77 78 79 80 81 82 83

  // handed by above layer, save the info mapping rank id to addr
  std::unordered_map<int64_t, std::string> rank_to_addr_;

  // the ip needs to be listened
  std::string addr_;

84 85
#if defined(PADDLE_WITH_DISTRIBUTE) && defined(PADDLE_WITH_PSCORE) && \
    !defined(PADDLE_WITH_ASCEND_CL)
86
  MessageServiceImpl message_service_;
87 88 89
  // brpc server
  brpc::Server server_;
#endif
90 91 92 93 94

  // for barrier
  std::mutex mutex_;
  std::condition_variable cv_;
  int count_{0};
95 96 97 98
};

}  // namespace distributed
}  // namespace paddle