Home
last modified time | relevance | path

Searched refs:CreateChannelHandle (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/python/
Dpy_client.h118 StatusOr<ChannelHandle> CreateChannelHandle() { in CreateChannelHandle() function
119 return pjrt_client_->CreateChannelHandle(); in CreateChannelHandle()
Dxla.cc217 .def("create_channel_handle", &PyClient::CreateChannelHandle) in PYBIND11_MODULE()
/external/tensorflow/tensorflow/compiler/xla/rpc/
Dgrpc_stub.cc123 Status GRPCStub::CreateChannelHandle(const CreateChannelHandleRequest* request, in CreateChannelHandle() function in xla::GRPCStub
126 return grpc_stub_->CreateChannelHandle(context, *request, response); in CreateChannelHandle()
Dgrpc_stub.h70 Status CreateChannelHandle(const CreateChannelHandleRequest* arg,
Dxla_service.proto126 rpc CreateChannelHandle(CreateChannelHandleRequest) rpc
/external/tensorflow/tensorflow/compiler/xla/
Dservice_interface.h72 virtual Status CreateChannelHandle(const CreateChannelHandleRequest* arg,
/external/tensorflow/tensorflow/compiler/xla/client/
Dclient.h218 StatusOr<ChannelHandle> CreateChannelHandle();
Dclient.cc494 Status s = stub_->CreateChannelHandle(&request, &response); in CreateChannelHandleByType()
504 StatusOr<ChannelHandle> Client::CreateChannelHandle() { in CreateChannelHandle() function in xla::Client
/external/tensorflow/tensorflow/compiler/xla/service/
Dservice.h179 Status CreateChannelHandle(const CreateChannelHandleRequest* arg,
Dservice.cc186 Status Service::CreateChannelHandle(const CreateChannelHandleRequest* arg, in CreateChannelHandle() function in xla::Service
/external/tensorflow/tensorflow/compiler/xla/pjrt/
Dpjrt_stream_executor_client.h204 StatusOr<ChannelHandle> CreateChannelHandle() override { in CreateChannelHandle() function
205 return client()->CreateChannelHandle(); in CreateChannelHandle()
Dpjrt_client.h262 virtual StatusOr<ChannelHandle> CreateChannelHandle() = 0;
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_compiler.cc1408 TF_ASSIGN_OR_RETURN(result.first->second, client()->CreateChannelHandle()); in GetChannelHandle()