Home
last modified time | relevance | path

Searched refs:input_reshaped (Results 1 – 11 of 11) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dmatrix_band_part_op.cc59 auto input_reshaped = input.flat_inner_dims<T, 3>(); in Compute() local
75 context, num_lower <= input_reshaped.dimension(1), in Compute()
78 input_reshaped.dimension(1), ") got: ", num_lower)); in Compute()
85 OP_REQUIRES(context, num_upper <= input_reshaped.dimension(2), in Compute()
88 input_reshaped.dimension(2), in Compute()
92 ((num_lower < 0 || num_lower == input_reshaped.dimension(1)) && in Compute()
93 (num_upper < 0 || num_upper == input_reshaped.dimension(2)))) { in Compute()
105 input_reshaped, output_reshaped); in Compute()
Dsplit_op.cc135 const InputReshapedType& input_reshaped, in operator ()() argument
161 use_parallelism_between_outputs, &input_reshaped, in operator ()()
180 result_shaped = input_reshaped.slice(slice_indices, slice_sizes); in operator ()()
185 input_reshaped, slice_indices, slice_sizes); in operator ()()
238 auto input_reshaped = in Compute() local
246 SplitOpCPUImpl<T, decltype(input_reshaped), 2>{}( in Compute()
247 context, input_reshaped, input_shape, split_dim, prefix_dim_size, in Compute()
251 auto input_reshaped = input.shaped<T, 3>( in Compute() local
261 SplitOpCPUImpl<T, decltype(input_reshaped), 3>{}( in Compute()
262 context, input_reshaped, input_shape, split_dim, prefix_dim_size, in Compute()
[all …]
Dsplit_v_op.cc189 const InputReshapedType& input_reshaped, in operator ()() argument
214 use_parallelism_between_outputs, &input_reshaped, in operator ()()
233 result_shaped = input_reshaped.slice(current_indices, sizes); in operator ()()
238 input_reshaped, current_indices, sizes); in operator ()()
300 auto input_reshaped = in Compute() local
308 SplitVOpCPUImpl<T, Tlen, decltype(input_reshaped), 2>{}( in Compute()
309 context, input_reshaped, split_start_points, input_shape, split_dim, in Compute()
313 auto input_reshaped = input.shaped<T, 3>( in Compute() local
323 SplitVOpCPUImpl<T, Tlen, decltype(input_reshaped), 3>{}( in Compute()
324 context, input_reshaped, split_start_points, input_shape, split_dim, in Compute()
[all …]
Dmatrix_diag_op.cc73 auto input_reshaped = input.flat_inner_dims<T, 3>(); in Compute() local
76 context->eigen_device<Device>(), input_reshaped, output_reshaped); in Compute()
101 auto input_reshaped = input.flat_inner_dims<T, 2>(); in Compute() local
112 input_reshaped, output_reshaped); in Compute()
Dcholesky_op.cc136 auto input_reshaped = input.template flat_inner_dims<Scalar, 3>(); in ComputeAsync() local
140 n /* num_lower_diags */, 0 /* num_upper_diags */, input_reshaped, in ComputeAsync()
144 const int64 batch_size = input_reshaped.dimension(0); in ComputeAsync()
Dmatrix_set_diag_op.cc81 auto input_reshaped = input.flat_inner_dims<T, 3>(); in Compute() local
88 context, context->eigen_device<Device>(), input_reshaped, diag_reshaped, in Compute()
Dunpack_op.cc106 auto input_reshaped = in Compute() local
119 output_shaped, input_reshaped, indices, in Compute()
Dsvd_op_gpu.cu.cc126 auto input_reshaped = M_copy.template flat_inner_dims<Scalar, 3>(); in RunSVD() local
127 input_ptr = input_reshaped.data(); in RunSVD()
133 const int64 batch_size = input_reshaped.dimension(0); in RunSVD()
Dbatch_kernels.cc149 auto input_reshaped = in SplitCPU() local
164 output_shaped, input_reshaped, in SplitCPU()
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Ddepthtospace_op.cc48 auto input_reshaped = NCHW_VECT_CToNCHW(input); in Compile() local
49 OP_REQUIRES_OK(ctx, input_reshaped.status()); in Compile()
50 input = input_reshaped.ValueOrDie(); in Compile()
Dspacetodepth_op.cc48 auto input_reshaped = NCHW_VECT_CToNCHW(input); in Compile() local
49 OP_REQUIRES_OK(ctx, input_reshaped.status()); in Compile()
50 input = input_reshaped.ValueOrDie(); in Compile()