Home
last modified time | relevance | path

Searched refs:push_index (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dtensor_list_utils.cc31 Status BuildTensorList(const xla::XlaOp& buffer, const xla::XlaOp& push_index, in BuildTensorList() argument
34 *output_list = xla::Tuple(buffer.builder(), {buffer, push_index}); in BuildTensorList()
44 Status GetTensorListPushIndex(const xla::XlaOp& op, xla::XlaOp* push_index) { in GetTensorListPushIndex() argument
46 *push_index = xla::GetTupleElement(op, 1); in GetTensorListPushIndex()
95 xla::XlaOp push_index; in InitializeTensorList() local
96 TF_RETURN_IF_ERROR(GetTensorListPushIndex(uninitialized_list, &push_index)); in InitializeTensorList()
97 return BuildTensorList(new_buffer, push_index, output_list); in InitializeTensorList()
Daggregate_ops.cc58 xla::XlaOp push_index; in Compile() local
59 OP_REQUIRES_OK(ctx, GetTensorListPushIndex(ctx->Input(0), &push_index)); in Compile()
60 OP_REQUIRES_OK(ctx, BuildTensorList(sum, push_index, &sum)); in Compile()
Dtensor_list_utils.h35 Status BuildTensorList(const xla::XlaOp& buffer, const xla::XlaOp& push_index,
42 Status GetTensorListPushIndex(const xla::XlaOp& op, xla::XlaOp* push_index);
Dtensor_list_ops.cc355 xla::XlaOp push_index; in Compile() local
356 OP_REQUIRES_OK(ctx, GetTensorListPushIndex(tl, &push_index)); in Compile()
373 push_index, &output_list)); in Compile()