Home
last modified time | relevance | path

Searched refs:Iota (Results 1 – 25 of 64) sorted by relevance

123

/external/tensorflow/tensorflow/compiler/xla/service/
Dstable_sort_expander_test.cc109 m::Sort(m::Parameter(0), m::Iota()), 0))); in TEST_F()
155 m::Sort(m::Parameter(0), m::Iota()), 0))); in TEST_F()
187 m::Sort(m::Parameter(0), m::Parameter(1), m::Iota()), 0), in TEST_F()
189 m::Sort(m::Parameter(0), m::Parameter(1), m::Iota()), 1)))); in TEST_F()
253 m::Sort(m::Parameter(0), m::Iota(), m::Iota()), 0))); in TEST_F()
290 m::Sort(m::Parameter(0), m::Iota(), m::Iota()), 0))); in TEST_F()
321 m::Sort(m::Parameter(0), m::Iota()), 0))); in TEST_F()
352 m::Sort(m::Parameter(0), m::Iota()), 0)))); in TEST_F()
Dqr_expander.cc97 XlaOp iota = Iota(builder, S32, m); in House()
210 auto iota_mn = Iota( in QrBlock()
230 auto iota = Reshape(Iota(a.builder(), S32, m), {m, 1}); in QrBlock()
234 auto successor_mask = Gt(Iota(a.builder(), S32, m), j); in QrBlock()
254 Iota(builder, ShapeUtil::MakeShape(S32, ConcatVectors(batch_dims, {n})), in QrBlock()
Dcholesky_expander.cc86 Iota(body_builder, ShapeUtil::MakeShape(S32, matrix_dims), ndims - 1); in CholeskyUnblocked()
88 Iota(body_builder, ShapeUtil::MakeShape(S32, matrix_dims), ndims - 2); in CholeskyUnblocked()
/external/tensorflow/tensorflow/compiler/xla/python/
Doutfeed_receiver_test.cc125 XlaOp data = Iota(&builder, shape0, 0); in TEST()
158 XlaOp data0 = Iota(&builder0, shape0, 0); in TEST()
168 XlaOp data1 = Iota(&builder1, shape1, 0); in TEST()
203 XlaOp data0 = Iota(&builder, shape0, 0); in TEST()
211 XlaOp data1 = Iota(&builder, shape1, 0); in TEST()
246 XlaOp data0 = Iota(&builder, shape0, 0); in TEST()
253 XlaOp data1 = Iota(&builder, shape1, 0); in TEST()
279 XlaOp data0 = Iota(&builder, shape0, 0); in TEST()
306 XlaOp data = Iota(&builder, shape0, 0); in TEST()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dlogdet.cc45 auto rows = Iota(a.builder(), ShapeUtil::ChangeElementType(a_shape, S32), in LogDet()
47 auto cols = Iota(a.builder(), ShapeUtil::ChangeElementType(a_shape, S32), in LogDet()
55 rows = Iota(a.builder(), row_shape, row_shape.rank() - 1); in LogDet()
Dmatrix.cc51 auto a = Iota(builder, U32, m); in IdentityMatrix()
52 auto b = Iota(builder, U32, n); in IdentityMatrix()
67 auto a = Iota(builder, S32, n); in GetDiagonalMask()
68 auto b = Iota(builder, S32, m) + ConstantR0WithType(builder, S32, diagonal); in GetDiagonalMask()
130 XlaOp diag_base_indices = BroadcastInDim(Iota(builder, S32, diag_len), in GetMatrixDiagonalViaGather()
221 auto a = Iota(builder, S32, n); in TriangleMask()
222 auto b = Iota(builder, S32, m) + ConstantR0<int32>(builder, diagonal); in TriangleMask()
276 mask = And(mask, Eq(Iota(builder, iota_shape, first_dim), in EinsumDiagonalMask()
277 Iota(builder, iota_shape, dim))); in EinsumDiagonalMask()
Dslicing.cc191 Iota(builder, ShapeUtil::MakeShape(index_shape.element_type(), sizes), in TorchGather()
211 to_concat.push_back(Iota(builder, index_shape, i)); in TorchGather()
247 Iota(builder, in TorchScatterDense()
286 to_concat.push_back(Iota(builder, index_shape, batch_dim)); in TorchIndexSelect()
Dsorting.cc50 XlaOp iota_s32 = Iota(builder, iota_shape, last_dim); in TopK()
92 XlaOp iota_s32 = Iota(builder, iota_shape, last_dim); in TopKWithPartitions()
Darithmetic.cc159 XlaOp iota = Iota(builder, iota_shape, axis); in ArgMinMax()
190 XlaOp iota = Iota( in ArgMinMaxTwoPass()
Dquantize.h106 XlaOp iota_r1 = Iota(builder, U32, unpack_size);
/external/tensorflow/tensorflow/compiler/xla/tests/
Diota_test.cc67 Iota(&builder, element_type, num_elements); in XLA_TEST_P()
104 Iota(&builder, ShapeUtil::MakeShape(element_type, dimensions), iota_dim); in XLA_TEST_P()
136 Iota(&builder, ShapeUtil::MakeShape(element_type, dimensions), iota_dim); in XLA_TEST_P()
Dconstants_test.cc186 auto val1 = Iota(&b, F32, 3); in TEST_F()
194 auto tuple = Tuple(&b, {Iota(&b, F32, 3), Iota(&b, F32, 1)}); in TEST_F()
Ddynamism_inference_test.cc109 TEST_F(DynamismInferenceTest, Iota) { in TEST_F() argument
114 auto computation = Iota(&b, S32, 2); in TEST_F()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dsequence_ops.cc65 xla::Iota(builder, xla::primitive_util::NativeToPrimitiveType<T>(), in CreateRangeTensor()
162 xla::XlaOp iota = xla::Iota(ctx->builder(), ctx->output_xla_type(0), num); in Compile()
169 xla::XlaOp mask = xla::Iota(ctx->builder(), xla::S64, num); in Compile()
Dmatrix_band_part_op.cc65 xla::XlaOp iota_m = xla::Iota(builder, iota_shape, /*iota_dimension=*/0); in Compile()
66 xla::XlaOp iota_n = xla::Iota(builder, iota_shape, /*iota_dimension=*/1); in Compile()
Dreverse_sequence_op.cc76 xla::XlaOp batch_idx = xla::Iota( in Compile()
80 xla::XlaOp forward_idx = xla::Iota( in Compile()
Dextract_image_patches_op.cc121 xla::Eq(xla::Iota(builder, iota_kernel_shape, 0), in Compile()
122 xla::Iota(builder, iota_kernel_shape, 2)), in Compile()
Dcast_op.cc164 auto iota = xla::Iota(ctx->builder(), xla_input_shape, in Compile()
190 xla::Iota(ctx->builder(), input_xla_shape, in Compile()
Dwhere_op.cc64 xla::XlaOp iota = xla::Iota(ctx->builder(), iota_shape, axis); in Compile()
Din_topk_op.cc72 xla::Iota(xla_builder, targets_type_, predictions_shape.dim_size(1)); in Compile()
Dtranspose_op.cc183 xla::Iota(ctx->builder(), in InvertPermutation()
Ddiag_op.cc45 xla::XlaOp iota = xla::Iota(builder, xla::S32, last_dim_size); in CreateDiagonal()
/external/tensorflow/tensorflow/core/tpu/kernels/
Dtopk_ops.cc152 xla::XlaOp iota_r1 = xla::Iota(builder, xla::S32, width); in CreateTopKUnique()
288 xla::XlaOp iota_r1 = xla::Iota(builder, xla::U32, width); in CreateMakeUnique()
/external/tensorflow/tensorflow/core/kernels/image/
Dnon_max_suppression_op.cu.cc246 __global__ void Iota(const int num_elements, const T offset, T* to_fill) { in Iota() function
318 TF_CHECK_OK(GpuLaunchKernel(Iota<int>, config.block_count, in NmsGpu()
462 TF_CHECK_OK(GpuLaunchKernel(Iota<int>, config.block_count, in DoNMS()
/external/tensorflow/tensorflow/core/kernels/
Dtraining_ops_test.cc76 static Node* Iota(Graph* g, int n) { in Iota() function
173 auto indices = Iota(g, m); in SparseAdagrad()

123