Skip to content

Commit

Permalink
[CPP RPC] Fix the compile problem of cpp_rpc (apache#4725)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenGene authored and alexwong committed Feb 26, 2020
1 parent 5d696d4 commit 676ed5d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions apps/cpp_rpc/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
#include <vector>
#include <sstream>

#include "../../src/common/util.h"
#include "../../src/common/socket.h"
#include "../../src/support/util.h"
#include "../../src/support/socket.h"
#include "rpc_server.h"

using namespace std;
using namespace tvm::runtime;
using namespace tvm::common;
using namespace tvm::support;

static const string kUSAGE = \
"Command line usage\n" \
Expand Down
2 changes: 1 addition & 1 deletion apps/cpp_rpc/rpc_env.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#include <cstring>

#include "rpc_env.h"
#include "../../src/common/util.h"
#include "../../src/support/util.h"
#include "../../src/runtime/file_util.h"

namespace tvm {
Expand Down
2 changes: 1 addition & 1 deletion apps/cpp_rpc/rpc_server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "rpc_tracker_client.h"
#include "../../src/runtime/rpc/rpc_session.h"
#include "../../src/runtime/rpc/rpc_socket_impl.h"
#include "../../src/common/socket.h"
#include "../../src/support/socket.h"

namespace tvm {
namespace runtime {
Expand Down
2 changes: 1 addition & 1 deletion apps/cpp_rpc/rpc_tracker_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include <string>

#include "../../src/runtime/rpc/rpc_session.h"
#include "../../src/common/socket.h"
#include "../../src/support/socket.h"

namespace tvm {
namespace runtime {
Expand Down

0 comments on commit 676ed5d

Please sign in to comment.