grpc_server_test.cc 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/* 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>
#include <thread>

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

namespace framework = paddle::framework;
namespace platform = paddle::platform;
namespace detail = paddle::operators::detail;

std::unique_ptr<detail::AsyncGRPCServer> rpc_service_;

void StartServer(const std::string& endpoint) {
  rpc_service_.reset(new detail::AsyncGRPCServer(endpoint));
Q
qiaolongfei 已提交
31
  rpc_service_->RunSyncUpdate();
32 33 34 35 36 37 38 39 40 41 42
}

TEST(PREFETCH, CPU) {
  // start up a server instance backend
  // TODO(Yancey1989): Need to start a server with optimize blocks and
  // prefetch blocks.
  std::thread server_thread(StartServer, "127.0.0.1:8889");
  framework::Scope scope;
  platform::CPUPlace place;
  platform::CPUDeviceContext ctx(place);
  // create var on local scope
Q
qiaolongfei 已提交
43 44 45 46 47 48 49
  std::string in_var_name("in");
  std::string out_var_name("out");
  auto* in_var = scope.Var(in_var_name);
  auto* in_tensor = in_var->GetMutable<framework::LoDTensor>();
  in_tensor->Resize({10, 10});
  VLOG(3) << "before mutable_data";
  in_tensor->mutable_data<int>(place);
50

Q
qiaolongfei 已提交
51 52 53
  scope.Var(out_var_name);

  VLOG(3) << "before fetch";
54
  detail::RPCClient client;
Q
qiaolongfei 已提交
55 56 57 58 59
  client.AsyncPrefetchVariable("127.0.0.1:8889", ctx, scope, in_var_name,
                               out_var_name);
  client.Wait();

  rpc_service_->ShutDown();
60 61 62
  server_thread.join();
  rpc_service_.reset(nullptr);
}