Home
last modified time | relevance | path

Searched refs:TransferToInfeed (Results 1 – 23 of 23) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
Dcpu_infeed_test.cc48 ASSERT_IS_OK(client_->TransferToInfeed(literal)); in TestInfeedRoundTrip()
160 client_->TransferToInfeed(LiteralUtil::CreateR1<float>({1, 2, 3}))); in TEST_F()
162 client_->TransferToInfeed(LiteralUtil::CreateR1<float>({4, 5, 6}))); in TEST_F()
164 client_->TransferToInfeed(LiteralUtil::CreateR1<float>({7, 8, 9}))); in TEST_F()
166 client_->TransferToInfeed(LiteralUtil::CreateR1<float>({10, 11, 12}))); in TEST_F()
168 client_->TransferToInfeed(LiteralUtil::CreateR1<float>({13, 14, 15}))); in TEST_F()
252 ASSERT_IS_OK(client_->TransferToInfeed( in TEST_F()
255 ASSERT_IS_OK(client_->TransferToInfeed( in TEST_F()
258 ASSERT_IS_OK(client_->TransferToInfeed( in TEST_F()
261 ASSERT_IS_OK(client_->TransferToInfeed( in TEST_F()
[all …]
/external/tensorflow/tensorflow/compiler/xla/tests/
Doutfeed_in_nested_computation_test.cc84 local_client_->TransferToInfeed(LiteralUtil::CreateR0<int32_t>(1))); in XLA_TEST_F()
96 TF_ASSERT_OK(local_client_->TransferToInfeed( in XLA_TEST_F()
157 local_client_->TransferToInfeed(LiteralUtil::CreateR0<bool>(true))); in XLA_TEST_F()
Dwhile_test.cc1255 TF_ASSERT_OK(client_->TransferToInfeed(LiteralUtil::CreateR0<bool>(true))); in XLA_TEST_F()
1256 TF_ASSERT_OK(client_->TransferToInfeed(LiteralUtil::CreateR0<bool>(true))); in XLA_TEST_F()
1257 TF_ASSERT_OK(client_->TransferToInfeed(LiteralUtil::CreateR0<bool>(false))); in XLA_TEST_F()
/external/tensorflow/tensorflow/compiler/xla/rpc/
Dgrpc_service.cc104 ::grpc::Status GRPCService::TransferToInfeed(::grpc::ServerContext* context, in TransferToInfeed() function in xla::GRPCService
108 return service_->TransferToInfeed(arg, result); in TransferToInfeed()
Dgrpc_stub.cc44 Status GRPCStub::TransferToInfeed(const TransferToInfeedRequest* request, in TransferToInfeed() function in xla::GRPCStub
47 return grpc_stub_->TransferToInfeed(context, *request, response); in TransferToInfeed()
Dgrpc_stub.h37 Status TransferToInfeed(const TransferToInfeedRequest* arg,
Dgrpc_service.h69 ::grpc::Status TransferToInfeed(::grpc::ServerContext* context,
Dxla_service.proto98 rpc TransferToInfeed(TransferToInfeedRequest) rpc
/external/tensorflow/tensorflow/compiler/xla/service/
Dcompile_only_service.h75 Status TransferToInfeed(const TransferToInfeedRequest* arg, in TransferToInfeed() function
Dservice.h145 Status TransferToInfeed(const TransferToInfeedRequest* arg,
Dservice.cc986 Status Service::TransferToInfeed(const TransferToInfeedRequest* arg, in TransferToInfeed() function in xla::Service
/external/tensorflow/tensorflow/compiler/xla/service/gpu/tests/
Dinfeed_test.cc42 ASSERT_IS_OK(client_->TransferToInfeed(literal)); in TestInfeedRoundTrip()
/external/tensorflow/tensorflow/compiler/xla/
Dservice_interface.h41 virtual Status TransferToInfeed(const TransferToInfeedRequest* arg,
/external/tensorflow/tensorflow/compiler/xla/python/tpu_driver/client/
Dtpu_client.h68 Status TransferToInfeed(const LiteralSlice& literal) override { in TransferToInfeed() function
103 Status TransferToInfeed(const LiteralSlice& literal, int device_id);
Dtpu_client_extension.cc78 return client->TransferToInfeed(literal, device_ordinal); in PYBIND11_MODULE()
Dtpu_client.cc123 Status PyTpuClient::TransferToInfeed(const LiteralSlice& literal, in TransferToInfeed() function in xla::PyTpuClient
/external/tensorflow/tensorflow/compiler/xla/client/
Dclient.h152 Status TransferToInfeed(const LiteralSlice& literal, int64 replica_id = 0,
Dclient.cc96 Status Client::TransferToInfeed(const LiteralSlice& literal, int64 replica_id, in TransferToInfeed() function in xla::Client
108 Status s = stub_->TransferToInfeed(&request, &response); in TransferToInfeed()
/external/tensorflow/tensorflow/compiler/xla/pjrt/
Dpjrt_client.h94 virtual Status TransferToInfeed(const LiteralSlice& literal) = 0;
Dpjrt_stream_executor_client.h108 Status TransferToInfeed(const LiteralSlice& literal) override;
Dpjrt_stream_executor_client.cc972 Status PjRtStreamExecutorDevice::TransferToInfeed(const LiteralSlice& literal) { in TransferToInfeed() function in xla::PjRtStreamExecutorDevice
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla.cc133 return device.TransferToInfeed(literal); in PYBIND11_MODULE()
/external/tensorflow/tensorflow/compiler/xla/tools/
Dreplay_computation.cc271 TF_CHECK_OK(client->TransferToInfeed(*infeed_data)); in ReplayComputation()