Home
last modified time | relevance | path

Searched refs:to_concat (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dslicing.cc142 std::vector<XlaOp> to_concat; in TorchGather() local
144 to_concat.reserve(input_shape.rank()); in TorchGather()
147 to_concat.push_back(Reshape(index, index_shape.dimensions())); in TorchGather()
149 to_concat.push_back(Iota(builder, index_shape, i)); in TorchGather()
152 XlaOp gather_indices = ConcatInDim(builder, to_concat, input_shape.rank()); in TorchGather()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Ddynamic_stitch_op.cc178 std::vector<xla::XlaOp> to_concat(number_of_indices); in Compile() local
186 to_concat[index_num] = in Compile()
190 ctx->SetOutput(0, xla::ConcatInDim(ctx->builder(), to_concat, 0)); in Compile()
/external/tensorflow/tensorflow/core/framework/
Dtensor_util_test.cc216 std::vector<Tensor> to_concat; in TEST() local
227 to_concat.push_back(tensor); in TEST()
233 TF_ASSERT_OK(tensor::Concat(to_concat, &concated)); in TEST()