Home
last modified time | relevance | path

Searched refs:Infeed (Results 1 – 10 of 10) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/python/
Dlocal_computation_builder.cc317 ComputationDataHandle LocalComputationBuilder::Infeed(const Shape& shape) { in Infeed() function in xla::swig::LocalComputationBuilder
318 return builder_.Infeed(shape); in Infeed()
Dlocal_computation_builder.h144 ComputationDataHandle Infeed(const Shape& shape);
Dxla_client.py473 def Infeed(self, shape): member in ComputationBuilder
482 return _wrap_data_handle(self._client.Infeed(shape))
Dxla_client_test.py1263 c.Infeed(xla_client.Shape.from_numpy(to_infeed[0]))
1275 x = c.Infeed(xla_client.Shape.from_numpy(to_round_trip[0]))
Dlocal_computation_builder.i879 %unignore xla::swig::LocalComputationBuilder::Infeed;
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_matchers.h125 HLO_MATCHER(Infeed);
/external/tensorflow/tensorflow/docs_src/performance/xla/
Doperation_semantics.md1240 ## Infeed section in Operation Semantics
1243 [`ComputationBuilder::Infeed`](https://www.tensorflow.org/code/tensorflow/compiler/xla/client/compu…
1245 <b> `Infeed(shape)` </b>
1249 | `shape` | `Shape` | Shape of the data read from the Infeed interface. The |
1254 Reads a single data item from the implicit Infeed streaming interface of the
1256 `ComputationDataHandle` of the data. Multiple Infeed operations are allowed in a
1257 computation, but there must be a total order among the Infeed operations. For
1263 Infeed(shape)
1267 Infeed(shape)
1271 Nested tuple shapes are not supported. For an empty tuple shape, the Infeed
[all …]
/external/tensorflow/tensorflow/compiler/xla/client/
Dcomputation_builder.h424 ComputationDataHandle Infeed(const Shape& shape, const string& config = "");
Dcomputation_builder.cc746 ComputationDataHandle ComputationBuilder::Infeed(const Shape& shape, in Infeed() function in xla::ComputationBuilder
/external/tensorflow/tensorflow/compiler/xla/tests/
Dlocal_client_execute_test.cc874 auto in = builder.Infeed(shape); in XLA_TEST_F()