Home
last modified time | relevance | path

Searched refs:InfeedWithToken (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/tests/
Dmultiple_devices_on_host_test.cc29 XlaOp infeed = InfeedWithToken(CreateToken(&b), scalar_s32); in BuildComputation()
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/
Dmlir_hlo_builder_test.cc83 auto infeed = InfeedWithToken(token, ShapeUtil::MakeShape(F32, {4, 8}), ""); in TEST_F()
/external/tensorflow/tensorflow/compiler/xla/python/
Dops.cc168 ops.def("InfeedWithToken", &InfeedWithToken, py::arg("token"), in BuildOpsSubmodule()
Dxla_client_test.py1773 ops.InfeedWithToken(
1792 ops.InfeedWithToken(
1810 x_and_token = ops.InfeedWithToken(
/external/tensorflow/tensorflow/compiler/mlir/hlo/include/mlir-hlo/Dialect/mhlo/IR/
Dhlo_ops.td392 // InfeedOp corresponds to 'InfeedWithToken' xla client API and not 'Infeed'.
393 // InfeedWithToken allows ordering of infeed HLO instructions using tokens.
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h637 XlaOp InfeedWithToken(XlaOp token, const Shape& shape, const string& config);
1420 friend XlaOp InfeedWithToken(XlaOp token, const Shape& shape,
1993 XlaOp InfeedWithToken(XlaOp token, const Shape& shape,
Dxla_builder.cc1736 XlaOp XlaBuilder::InfeedWithToken(XlaOp token, const Shape& shape, in InfeedWithToken() function in xla::XlaBuilder
4921 XlaOp InfeedWithToken(const XlaOp token, const Shape& shape, in InfeedWithToken() function
4923 return token.builder()->InfeedWithToken(token, shape, config); in InfeedWithToken()
/external/tensorflow/tensorflow/compiler/mlir/xla/
Dmlir_hlo_to_hlo.cc780 value_map[op] = xla::InfeedWithToken(token, xla::TypeToShape(result_type), in ExportXlaOp()