parent
95658767eb
commit
c3580eae46
@ -0,0 +1,51 @@
|
|||||||
|
/* 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));
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
std::string var_name("tmp_0");
|
||||||
|
auto var = scope.Var(var_name);
|
||||||
|
auto tensor = var->GetMutable<framework::LoDTensor>();
|
||||||
|
tensor->Resize({10, 10});
|
||||||
|
|
||||||
|
detail::RPCClient client;
|
||||||
|
client.AsyncPrefetchVariable("127.0.0.1:8889", ctx, scope, var_name, "");
|
||||||
|
server_thread.join();
|
||||||
|
rpc_service_.reset(nullptr);
|
||||||
|
}
|
Loading…
Reference in new issue