Home
last modified time | relevance | path

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

12

/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()
Dcholesky_expander.cc86 Iota(body_builder, ShapeUtil::MakeShape(S32, row_shape_dims), in CholeskyUnblocked()
89 Iota(body_builder, ShapeUtil::MakeShape(S32, col_shape_dims), in CholeskyUnblocked()
Ddynamic_padder_test.cc52 op::Select(op::Lt(op::Iota(), op::Broadcast(op::Parameter())), in ExpectPadded()
/external/tensorflow/tensorflow/compiler/xla/tests/
Diota_test.cc42 Iota(&builder, element_type, num_elements); in TEST_P()
74 Iota(&builder, ShapeUtil::MakeShape(element_type, dimensions), iota_dim); in TEST_P()
101 Iota(&builder, ShapeUtil::MakeShape(element_type, dimensions), iota_dim); in TEST_P()
126 Iota(&builder, ShapeUtil::MakeShape(element_type, dimensions), iota_dim); in 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()
/external/tensorflow/tensorflow/compiler/xla/client/lib/
Dmatrix.cc43 auto a = Iota(builder, U32, m); in IdentityMatrix()
44 auto b = Iota(builder, U32, n); in IdentityMatrix()
62 auto a = Iota(builder, S32, n); in GetMatrixDiagonal()
63 auto b = Iota(builder, S32, m) + offset; in GetMatrixDiagonal()
101 auto a = Iota(builder, S32, n); in TriangleMask()
102 auto b = Iota(builder, S32, m) + ConstantR0<int32>(builder, diagonal); in TriangleMask()
Dsorting.cc32 XlaOp iota_s32 = Iota(builder, iota_shape, last_dim); in TopK()
Dqr.cc92 XlaOp iota = Iota(builder, S32, m); in House()
203 auto iota = Reshape(Iota(a.builder(), S32, m), {m, 1}); in QRBlock()
Dquantize.h106 XlaOp iota_r1 = Iota(builder, U32, unpack_size);
Darithmetic.cc165 XlaOp iota = Iota(builder, output_type, axis_size); in ArgMinMax()
Dprng.cc110 inputs[0] = Iota(builder, U32, size); in GetInputs()
Dslicing.cc149 to_concat.push_back(Iota(builder, index_shape, i)); in TorchGather()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dmatrix_set_diag_op.cc65 xla::XlaOp iota_m = xla::Iota(builder, xla::S32, m); in Compile()
66 xla::XlaOp iota_n = xla::Iota(builder, xla::S32, n); 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()
Dtranspose_op.cc160 auto iota = xla::Iota(ctx->builder(), xla::S32, size); in Compile()
Dextract_image_patches_op.cc114 xla::XlaOp iota = xla::Iota(builder, xla::S32, kernel_size * depth); in Compile()
Ddiag_op.cc44 xla::XlaOp iota = xla::Iota(builder, xla::S32, last_dim_size); in CreateDiagonal()
Dsequence_ops.cc64 xla::Iota(builder, xla::primitive_util::NativeToPrimitiveType<T>(), in CreateRangeTensor()
Dconv_op_helpers.cc109 xla::XlaOp input_feature_iota = xla::Iota( in CreateExpandedFilterMask()
111 xla::XlaOp expanded_feature_iota = xla::Iota( in CreateExpandedFilterMask()
Drandom_ops.cc155 xla::XlaOp indices = xla::Iota(builder, xla::S32, n); in Compile()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_helpers.cc102 xla::Eq(indices, xla::Iota(builder, iota_shape, axis), broadcast_dims), in OneHot()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DHTMLEntities.properties144 # Iota 921
/external/tensorflow/tensorflow/compiler/xla/client/
Dxla_builder.h498 XlaOp Iota(const Shape& shape, int64 iota_dimension);
500 XlaOp Iota(PrimitiveType type, int64 size);
932 friend XlaOp Iota(XlaBuilder* builder, const Shape& shape,
934 friend XlaOp Iota(XlaBuilder* builder, PrimitiveType type, int64 size);
1700 XlaOp Iota(XlaBuilder* builder, const Shape& shape, int64 iota_dimension);
1703 XlaOp Iota(XlaBuilder* builder, PrimitiveType type, int64 size);
/external/tensorflow/tensorflow/compiler/xla/python/
Dlocal_computation_builder.cc461 LocalOp ComputationBuilder::Iota(PrimitiveType element_type, int64 size) { in Iota() function in xla::swig::ComputationBuilder
462 return xla::Iota(&builder_, element_type, size); in Iota()
467 return xla::Iota(&builder_, shape, dimension); in BroadcastedIota()

12