Home
last modified time | relevance | path

Searched refs:InputShape (Results 1 – 25 of 79) sorted by relevance

1234

/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dtraining_ops.cc39 TensorShape alpha_shape = ctx->InputShape(1); in Compile()
44 TensorShape delta_shape = ctx->InputShape(2); in Compile()
84 TensorShape alpha_shape = ctx->InputShape(1); in Compile()
88 TensorShape l1_shape = ctx->InputShape(2); in Compile()
92 TensorShape l2_shape = ctx->InputShape(3); in Compile()
96 TensorShape delta_shape = ctx->InputShape(4); in Compile()
136 TensorShape lr_shape = ctx->InputShape(2); in Compile()
141 TensorShape grad_shape = ctx->InputShape(3); in Compile()
147 TensorShape momentum_shape = ctx->InputShape(4); in Compile()
194 TensorShape lr_shape = ctx->InputShape(2); in Compile()
[all …]
Ddynamic_slice_ops.cc40 const TensorShape input_shape = ctx->InputShape("input"); in Compile()
41 const TensorShape update_shape = ctx->InputShape("update"); in Compile()
42 const TensorShape index_shape = ctx->InputShape("indices"); in Compile()
75 const TensorShape input_shape = ctx->InputShape("input"); in Compile()
76 const TensorShape start_indices_shape = ctx->InputShape("start_indices"); in Compile()
77 const TensorShape size_indices_shape = ctx->InputShape("size_indices"); in Compile()
Dshape_op.cc39 const TensorShape input_shape = ctx->InputShape(0); in Compile()
59 const TensorShape input_shape = ctx->InputShape(i); in Compile()
78 const TensorShape input_shape = ctx->InputShape(0); in Compile()
94 const TensorShape input_shape = ctx->InputShape(0); in Compile()
119 const TensorShape input_shape = ctx->InputShape("input"); in Compile()
120 const TensorShape dim_shape = ctx->InputShape("dim"); in Compile()
169 const TensorShape input_shape = ctx->InputShape(0); in Compile()
226 const TensorShape input_shape = ctx->InputShape(0); in Compile()
240 const TensorShape input_shape = ctx->InputShape(0); in Compile()
Dconcat_op.cc47 const TensorShape concat_dim_tensor_shape = ctx->InputShape(axis_index_); in Compile()
126 const TensorShape concat_dim_shape = ctx->InputShape(0); in Compile()
132 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(ctx->InputShape(i)), in Compile()
135 ctx->InputShape(i).DebugString())); in Compile()
156 const TensorShape inp0_shape = ctx->InputShape(1); in Compile()
171 const TensorShape inp_shape = ctx->InputShape(1 + i); in Compile()
Done_hot_op.cc33 const TensorShape indices_shape = ctx->InputShape(0); in Compile()
34 const TensorShape depth_shape = ctx->InputShape(1); in Compile()
35 const TensorShape on_value_shape = ctx->InputShape(2); in Compile()
36 const TensorShape off_value_shape = ctx->InputShape(3); in Compile()
Dpooling_ops.cc79 const TensorShape ksize_shape = ctx->InputShape(1); in GetKernelSize()
103 const TensorShape stride_shape = ctx->InputShape(2); in GetStride()
170 const TensorShape input_shape = ctx->InputShape(0); in Compile()
223 const TensorShape input_shape = ctx->InputShape(0); in Compile()
284 const TensorShape ksize_shape = ctx->InputShape(3); in Compile()
291 const TensorShape stride_shape = ctx->InputShape(4); in Compile()
308 const TensorShape tensor_in_shape = ctx->InputShape(0); in Compile()
309 const TensorShape tensor_out_shape = ctx->InputShape(1); in Compile()
310 const TensorShape out_backprop_shape = ctx->InputShape(2); in Compile()
407 const TensorShape out_backprop_shape = ctx->InputShape(1); in Compile()
[all …]
Dsequence_ops.cc73 const TensorShape start_in_shape = ctx->InputShape(0); in Compile()
74 const TensorShape limit_in_shape = ctx->InputShape(1); in Compile()
75 const TensorShape delta_in_shape = ctx->InputShape(2); in Compile()
125 const TensorShape start_in_shape = ctx->InputShape("start"); in Compile()
126 const TensorShape stop_in_shape = ctx->InputShape("stop"); in Compile()
127 const TensorShape num_in_shape = ctx->InputShape("num"); in Compile()
Dlistdiff_op.cc41 OP_REQUIRES(context, TensorShapeUtils::IsVector(context->InputShape(0)), in Compile()
43 context->InputShape(0).DebugString())); in Compile()
45 OP_REQUIRES(context, TensorShapeUtils::IsVector(context->InputShape(1)), in Compile()
47 context->InputShape(1).DebugString())); in Compile()
Dreverse_op.cc37 const TensorShape x_shape = ctx->InputShape(0); in Compile()
38 const TensorShape revd_shape = ctx->InputShape(1); in Compile()
75 const TensorShape x_shape = ctx->InputShape(0); in Compile()
76 const TensorShape axes_shape = ctx->InputShape(1); in Compile()
Dsplit_op.cc38 const TensorShape split_dim_shape = ctx->InputShape("split_dim"); in Compile()
39 const TensorShape input_shape = ctx->InputShape(1); in Compile()
105 const TensorShape input_shape = ctx->InputShape(0); in Compile()
106 const TensorShape index_shape = ctx->InputShape(2); in Compile()
131 const TensorShape split_size_shape = ctx->InputShape(1); in Compile()
Dclip_by_value_op.cc29 const TensorShape shape = ctx->InputShape(0); in Compile()
30 const TensorShape min_shape = ctx->InputShape(1); in Compile()
31 const TensorShape max_shape = ctx->InputShape(2); in Compile()
Dstateless_random_ops.cc81 TensorShape seed_shape = ctx->InputShape(1); in Compile()
120 TensorShape seed_shape = ctx->InputShape(1); in Compile()
124 TensorShape minval_shape = ctx->InputShape(2); in Compile()
128 TensorShape maxval_shape = ctx->InputShape(3); in Compile()
168 TensorShape seed_shape = ctx->InputShape(1); in Compile()
209 TensorShape seed_shape = ctx->InputShape(1); in Compile()
Dtranspose_op.cc40 const TensorShape input_shape = ctx->InputShape("x"); in Compile()
41 const TensorShape perm_tensor_shape = ctx->InputShape("perm"); in Compile()
126 FastBoundsCheck(ctx->InputShape(0).num_elements(), in Compile()
159 int size = ctx->InputShape(0).num_elements(); in Compile()
Dsparse_to_dense_op.cc31 const TensorShape indices_shape = context->InputShape(0); in Compile()
51 const TensorShape sparse_values_shape = context->InputShape(2); in Compile()
62 const TensorShape default_value_shape = context->InputShape(3); in Compile()
Dselect_op.cc34 const TensorShape cond_shape = ctx->InputShape(0); in Compile()
35 const TensorShape then_shape = ctx->InputShape(1); in Compile()
36 const TensorShape else_shape = ctx->InputShape(2); in Compile()
Dgather_op.cc156 auto input_shape = context->InputShape(0); in Compile()
158 auto indices_shape = context->InputShape(1); in Compile()
161 const TensorShape axis_shape = context->InputShape(2); in Compile()
206 TensorShape params_shape = context->InputShape(0); in Compile()
207 TensorShape indices_shape = context->InputShape(1); in Compile()
Dpad_op.cc33 const TensorShape input_shape = ctx->InputShape("input"); in Compile()
34 const TensorShape pad_shape = ctx->InputShape("paddings"); in Compile()
74 ctx, TensorShapeUtils::IsScalar(ctx->InputShape("constant_values")), in Compile()
Dxla_conv_op.cc44 const TensorShape lhs_shape = context->InputShape(0); in Compile()
45 const TensorShape rhs_shape = context->InputShape(1); in Compile()
46 const TensorShape padding_shape = context->InputShape("padding"); in Compile()
Dlrn_ops.cc38 const TensorShape in_shape = ctx->InputShape(0); in Compile()
90 const TensorShape in_grads_shape = ctx->InputShape(0); in Compile()
91 const TensorShape in_image_shape = ctx->InputShape(1); in Compile()
92 const TensorShape out_image_shape = ctx->InputShape(2); in Compile()
Dsoftmax_op.cc40 const TensorShape logits_shape = ctx->InputShape(0); in Compile()
148 const TensorShape logits_shape = ctx->InputShape(0); in Compile()
149 const TensorShape labels_shape = ctx->InputShape(1); in Compile()
181 const TensorShape logits_shape = ctx->InputShape(0); in Compile()
182 const TensorShape labels_shape = ctx->InputShape(1); in Compile()
Dslice_op.cc40 const TensorShape input_shape = ctx->InputShape(0); in Compile()
41 const TensorShape begin_tensor_shape = ctx->InputShape(1); in Compile()
42 const TensorShape size_tensor_shape = ctx->InputShape(2); in Compile()
Dmatrix_band_part_op.cc32 const TensorShape input_shape = context->InputShape(0); in Compile()
39 const TensorShape num_lower_in_shape = context->InputShape(1); in Compile()
44 const TensorShape num_upper_in_shape = context->InputShape(2); in Compile()
Dbias_ops.cc42 const TensorShape input_shape = ctx->InputShape(0); in Compile()
43 const TensorShape bias_shape = ctx->InputShape(1); in Compile()
91 const TensorShape out_backprop_shape = ctx->InputShape(0); in Compile()
Ddiag_op.cc86 const TensorShape input_shape = ctx->InputShape(0); in Compile()
126 const TensorShape input_shape = ctx->InputShape(0); in Compile()
170 const TensorShape input_shape = ctx->InputShape(0); in Compile()
197 const TensorShape input_shape = ctx->InputShape(0); in Compile()
Deinsum_op.cc41 const TensorShape a_shape = ctx->InputShape(0); in Compile()
42 const TensorShape b_shape = ctx->InputShape(1); in Compile()

1234