Home
last modified time | relevance | path

Searched refs:GrpcClient (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/mindspore/ccsrc/debug/debugger/
Dgrpc_client.cc35 GrpcClient::GrpcClient(const std::string &host, const std::string &port) : stub_(nullptr) { Init(ho… in GrpcClient() function in mindspore::GrpcClient
37 void GrpcClient::Init(const std::string &host, const std::string &port) { in Init()
45 void GrpcClient::Reset() { stub_ = nullptr; } in Reset()
47 EventReply GrpcClient::WaitForCommand(const Metadata &metadata) { in WaitForCommand()
59 EventReply GrpcClient::SendMetadata(const Metadata &metadata) { in SendMetadata()
71 std::vector<std::string> GrpcClient::ChunkString(std::string str, int graph_size) { in ChunkString()
95 EventReply GrpcClient::SendGraph(const GraphProto &graph) { in SendGraph()
123 EventReply GrpcClient::SendMultiGraphs(const std::list<Chunk> &chunks) { in SendMultiGraphs()
144 EventReply GrpcClient::SendTensors(const std::list<TensorProto> &tensors) { in SendTensors()
165 EventReply GrpcClient::SendWatchpointHits(const std::list<WatchpointHit> &watchpoints) { in SendWatchpointHits()
[all …]
Dgrpc_client.h38 class GrpcClient {
40 GrpcClient(const std::string &host, const std::string &port);
42 ~GrpcClient() = default;
Ddebugger.h249 std::unique_ptr<GrpcClient> grpc_client_;
Ddebugger.cc191 grpc_client_ = std::make_unique<GrpcClient>(host, port); in EnableDebugger()