Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/tests/
Doutfeed_in_nested_computation_test.cc38 XlaOp num_iter = Infeed(&b, int_shape); in XLA_TEST_F()
58 XlaOp some_input = Infeed(&body_builder, xfeed_shape); in XLA_TEST_F()
141 XlaOp pred = Infeed(&b, condition_shape); in XLA_TEST_F()
Dlocal_client_execute_test.cc849 auto in = Infeed(&builder, shape); in XLA_TEST_F()
875 auto in = Infeed(&builder, shape); in XLA_TEST_F()
Dwhile_test.cc1240 Infeed(&builder, ShapeUtil::MakeShape(PRED, {})); in XLA_TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
Dcpu_infeed_test.cc50 Infeed(&builder, literal.shape()); in TestInfeedRoundTrip()
138 auto infeed = Infeed(&builder, infeed_shape); in TEST_F()
227 auto infeed = Infeed(&builder, infeed_shape); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/service/gpu/tests/
Dinfeed_test.cc44 Infeed(&builder, literal.shape()); in TestInfeedRoundTrip()
/external/tensorflow/tensorflow/compiler/xla/rpc/
Dxla_service.proto97 // Transfers the given literal to the Infeed buffer of the device.
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Doperation_semantics.md1495 ## Infeed section in Operation Semantics
1498 [`XlaBuilder::Infeed`](https://www.tensorflow.org/code/tensorflow/compiler/xla/client/xla_builder.h…
1500 <b> `Infeed(shape)` </b>
1504 | `shape` | `Shape` | Shape of the data read from the Infeed interface. The |
1509 Reads a single data item from the implicit Infeed streaming interface of the
1511 `XlaOp` of the data. Multiple Infeed operations are allowed in a
1512 computation, but there must be a total order among the Infeed operations. For
1518 Infeed(shape)
1522 Infeed(shape)
1526 Nested tuple shapes are not supported. For an empty tuple shape, the Infeed
[all …]
/external/tensorflow/tensorflow/compiler/xla/python/
Dlocal_computation_builder.cc448 LocalOp ComputationBuilder::Infeed(const Shape& shape) { in Infeed() function in xla::swig::ComputationBuilder
449 return xla::Infeed(&builder_, shape); in Infeed()
Dlocal_computation_builder.h229 LocalOp Infeed(const Shape& shape);
Dlocal_computation_builder.i294 %unignore xla::swig::ComputationBuilder::Infeed;
Dxla_client.py942 def Infeed(self, shape): member in ComputationBuilder
951 return self._client.Infeed(shape)
Dxla_client_test.py1652 c.Infeed(xla_client.Shape.from_pyval(to_infeed[0]))
1664 x = c.Infeed(xla_client.Shape.from_pyval(to_round_trip[0]))
/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_matchers.h208 HLO_MATCHER(Infeed);
Dpattern_matcher.h2088 XLA_UNOP_PATTERN(Infeed)
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h422 XlaOp Infeed(const Shape& shape, const string& config = "");
818 friend XlaOp Infeed(XlaBuilder* builder, const Shape& shape,
1393 XlaOp Infeed(XlaBuilder* builder, const Shape& shape,
Dxla_builder.cc1281 XlaOp XlaBuilder::Infeed(const Shape& shape, const string& config) { in Infeed() function in xla::XlaBuilder
3067 XlaOp Infeed(XlaBuilder* builder, const Shape& shape, const string& config) { in Infeed() function
3068 return builder->Infeed(shape, config); in Infeed()