grpc_server_test.cc 5.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2016 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. */

#include <unistd.h>
#include <string>
Y
Yancey1989 已提交
17
#include <thread>  // NOLINT
18 19 20 21 22

#include "gtest/gtest.h"
#include "paddle/fluid/operators/detail/grpc_client.h"
#include "paddle/fluid/operators/detail/grpc_server.h"

Y
Yancey1989 已提交
23
#include "paddle/fluid/framework/block_desc.h"
Y
Yancey1989 已提交
24 25 26
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/operator.h"

27 28
#include "paddle/fluid/operators/detail/request_handler_impl.h"

29 30 31 32
namespace framework = paddle::framework;
namespace platform = paddle::platform;
namespace detail = paddle::operators::detail;

Y
Yancey1989 已提交
33 34
USE_OP(lookup_table);

35 36
std::unique_ptr<detail::AsyncGRPCServer> g_rpc_service;
std::unique_ptr<detail::RequestHandler> g_req_handler;
37

Y
Yancey1989 已提交
38 39 40
framework::BlockDesc* AppendPrefetchBlcok(framework::ProgramDesc* program) {
  auto root_block = program->MutableBlock(0);
  auto* block = program->AppendBlock(*root_block);
Y
Yancey1989 已提交
41 42 43 44 45 46 47 48

  framework::VariableNameMap input({{"W", {"w"}}, {"Ids", {"ids"}}});
  framework::VariableNameMap output({{"Output", {"out"}}});
  auto op = block->AppendOp();
  op->SetType("lookup_table");
  op->SetInput("W", {"w"});
  op->SetInput("Ids", {"ids"});
  op->SetOutput("Out", {"out"});
Y
Yancey1989 已提交
49 50

  auto& out = *root_block->Var("out");
Y
Yancey1989 已提交
51
  out.SetType(framework::proto::VarType::SELECTED_ROWS);
Y
Yancey1989 已提交
52 53
  out.SetShape({10, 10});

Y
Yancey1989 已提交
54 55 56
  return block;
}

Y
Yancey1989 已提交
57 58
void CreateVarsOnScope(framework::Scope* scope, platform::CPUPlace* place) {
  auto w_var = scope->Var("w");
Y
Yancey1989 已提交
59
  w_var->GetMutable<framework::SelectedRows>();
Y
Yancey1989 已提交
60

Y
Yancey1989 已提交
61
  auto out_var = scope->Var("out");
Y
Yancey1989 已提交
62
  out_var->GetMutable<framework::SelectedRows>();
Y
Yancey1989 已提交
63

Y
Yancey1989 已提交
64
  auto ids_var = scope->Var("ids");
Y
Yancey1989 已提交
65
  ids_var->GetMutable<framework::SelectedRows>();
Y
Yancey1989 已提交
66 67
}

Y
Yancey1989 已提交
68 69
void InitTensorsOnClient(framework::Scope* scope, platform::CPUPlace* place,
                         int64_t rows_numel) {
Y
Yancey1989 已提交
70
  CreateVarsOnScope(scope, place);
Y
Yancey1989 已提交
71 72 73 74 75
  auto ids_var = scope->Var("ids")->GetMutable<framework::SelectedRows>();
  auto rows = ids_var->mutable_rows();
  for (int64_t i = 0; i < rows_numel; ++i) rows->push_back(i * 2);
  ids_var->mutable_value()->Resize({rows_numel, 1});
  ids_var->mutable_value()->mutable_data<float>(*place);
Y
Yancey1989 已提交
76 77
}

Y
Yancey1989 已提交
78 79
void InitTensorsOnServer(framework::Scope* scope, platform::CPUPlace* place,
                         int64_t rows_numel) {
Y
Yancey1989 已提交
80
  CreateVarsOnScope(scope, place);
Y
Yancey1989 已提交
81 82 83 84 85 86 87 88 89
  auto w = scope->Var("w")->GetMutable<framework::SelectedRows>();
  auto rows = w->mutable_rows();
  for (int64_t i = 0; i < rows_numel; ++i) rows->push_back(i);
  auto w_value = w->mutable_value();
  w_value->Resize({rows_numel, 10});

  auto ptr = w_value->mutable_data<float>(*place);

  for (int64_t i = 0; i < w_value->numel(); ++i) {
Y
Yancey1989 已提交
90 91 92
    ptr[i] = static_cast<float>(i / 10);
  }
}
Y
Yancey1989 已提交
93

94
void StartServer() {
Y
Yancey1989 已提交
95 96 97 98 99
  framework::ProgramDesc program;
  framework::Scope scope;
  platform::CPUPlace place;
  framework::Executor exe(place);
  platform::CPUDeviceContext ctx(place);
Y
Yancey1989 已提交
100
  auto* block = AppendPrefetchBlcok(&program);
Y
Yancey1989 已提交
101
  auto prepared = exe.Prepare(program, block->ID());
Y
Yancey1989 已提交
102
  InitTensorsOnServer(&scope, &place, 10);
Y
Yancey1989 已提交
103

104 105 106 107 108 109 110 111 112 113 114
  g_req_handler->SetProgram(&program);
  g_req_handler->SetPrefetchPreparedCtx(std::move(prepared));
  g_req_handler->SetDevCtx(&ctx);
  g_req_handler->SetScope(&scope);
  g_req_handler->SetExecutor(&exe);

  g_rpc_service->RegisterRPC(detail::kRequestPrefetch, g_req_handler.get());
  g_req_handler->SetRPCServer(g_rpc_service.get());

  std::thread server_thread(
      std::bind(&detail::AsyncGRPCServer::StartServer, g_rpc_service.get()));
Y
Yancey1989 已提交
115

116 117 118 119 120
  // FIXME(gongwb): don't use hard time.
  sleep(10);
  LOG(INFO) << "got nccl id and stop server...";
  g_rpc_service->ShutDown();
  server_thread.join();
121 122
}

123 124 125 126 127 128 129 130 131 132 133
TEST(PREFETCH, CPU) {
  g_req_handler.reset(new detail::RequestPrefetchHandler(true));
  g_rpc_service.reset(new detail::AsyncGRPCServer("127.0.0.1:0", 1));

  std::thread server_thread(StartServer);
  g_rpc_service->WaitServerReady();

  detail::RPCClient client;
  int port = g_rpc_service->GetSelectedPort();
  std::string ep = paddle::string::Sprintf("127.0.0.1:%d", port);

134 135 136
  framework::Scope scope;
  platform::CPUPlace place;
  platform::CPUDeviceContext ctx(place);
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
  {
    // create var on local scope
    int64_t rows_numel = 5;
    InitTensorsOnClient(&scope, &place, rows_numel);
    std::string in_var_name("ids");
    std::string out_var_name("out");

    client.AsyncPrefetchVariable(ep, ctx, scope, in_var_name, out_var_name);
    client.Wait();
    auto var = scope.Var(out_var_name);
    auto value = var->GetMutable<framework::SelectedRows>()->value();
    auto ptr = value.mutable_data<float>(place);

    for (int64_t i = 0; i < rows_numel; ++i) {
      EXPECT_EQ(ptr[0 + i * value.dims()[1]], static_cast<float>(i * 2));
    }
Y
Yancey1989 已提交
153
  }
154 155 156 157 158

  server_thread.join();
  LOG(INFO) << "begin reset";
  g_rpc_service.reset(nullptr);
  g_req_handler.reset(nullptr);
159
}