Home
last modified time | relevance | path

Searched refs:ResizeTensor (Results 1 – 25 of 144) sorted by relevance

123456

/external/tensorflow/tensorflow/lite/kernels/
Dsvdf.cc131 context->ResizeTensor(context, output, output_size_array)); in Prepare()
164 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scratch_tensor, in Prepare()
179 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
194 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in Prepare()
211 context->ResizeTensor(context, float_weights_time, in Prepare()
225 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, zero_points, in Prepare()
240 context, context->ResizeTensor(context, row_sums, row_sums_size)); in Prepare()
254 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, output_temp, in Prepare()
Dbasic_rnn.cc105 context->ResizeTensor(context, output, output_size_array)); in Prepare()
124 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
138 context->ResizeTensor(context, hidden_state_quantized, in Prepare()
151 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in Prepare()
166 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, accum_scratch, in Prepare()
179 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, zero_points, in Prepare()
194 context, context->ResizeTensor(context, row_sums, row_sums_size)); in Prepare()
Dbidirectional_sequence_lstm.cc556 context->ResizeTensor(context, fw_output, fw_output_size)); in Prepare()
593 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, fw_scratch_buffer, in Prepare()
620 context, context->ResizeTensor(context, bw_output, bw_output_size)); in Prepare()
655 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, bw_scratch_buffer, in Prepare()
672 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
689 context, context->ResizeTensor(context, fw_activation_state_quantized, in Prepare()
705 context, context->ResizeTensor(context, bw_activation_state_quantized, in Prepare()
721 context->ResizeTensor(context, fw_cell_state_quantized, in Prepare()
737 context->ResizeTensor(context, bw_cell_state_quantized, in Prepare()
759 context, context->ResizeTensor(context, input_sf, input_sf_size)); in Prepare()
[all …]
Dunidirectional_sequence_rnn.cc112 context->ResizeTensor(context, output, output_size_array)); in Prepare()
131 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
145 context->ResizeTensor(context, hidden_state_quantized, in Prepare()
158 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in Prepare()
173 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, accum_scratch, in Prepare()
186 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, zero_points, in Prepare()
201 context, context->ResizeTensor(context, row_sums, row_sums_size)); in Prepare()
Drandom_uniform.cc74 return context->ResizeTensor(context, output, in Prepare()
86 context->ResizeTensor(context, output, in EvalFloat()
131 context->ResizeTensor(context, output, in EvalInt()
Dtranspose_conv.cc103 TfLiteStatus ResizeTensor(TfLiteContext* context, in ResizeTensor() function
118 return context->ResizeTensor(context, tensor_to_resize, shape); in ResizeTensor()
187 return context->ResizeTensor(context, col2im, col2im_shape_array); in ResizeCol2ImTensor()
202 TF_LITE_ENSURE_STATUS(context->ResizeTensor(context, transposed_weights, in ResizeAndTransposeWeights()
326 TF_LITE_ENSURE_STATUS(ResizeTensor(context, output_shape, output)); in Prepare()
367 ResizeTensor(context, output_shape, scratch_buffer)); in Prepare()
596 TF_LITE_ENSURE_OK(context, ResizeTensor(context, output_shape, output)); in Eval()
635 ResizeTensor(context, output_shape, scratch_buffer)); in Eval()
654 ResizeTensor(context, output_shape, scratch_buffer)); in Eval()
671 ResizeTensor(context, output_shape, scratch_buffer)); in Eval()
Dbidirectional_sequence_rnn.cc209 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
226 context, context->ResizeTensor(context, fw_hidden_state_quantized, in Prepare()
243 context, context->ResizeTensor(context, bw_hidden_state_quantized, in Prepare()
259 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in Prepare()
276 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, accum_scratch, in Prepare()
291 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, zero_points, in Prepare()
308 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, fw_row_sums, in Prepare()
324 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, bw_row_sums, in Prepare()
340 context->ResizeTensor(context, aux_input_quantized, in Prepare()
356 context, context->ResizeTensor(context, fw_output, fw_output_size_array)); in Prepare()
[all …]
Dbatch_matmul.cc121 TfLiteStatus stat = context->ResizeTensor(context, output, output_shape); in ResizeOutputTensor()
168 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scratch_buffer, in InitializeTemporaries()
197 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scratch_buffer, in InitializeTemporaries()
227 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in InitializeTemporaries()
241 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in InitializeTemporaries()
258 context, context->ResizeTensor(context, accum_scratch, accum_size)); in InitializeTemporaries()
270 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_offsets, in InitializeTemporaries()
284 context, context->ResizeTensor(context, row_sums, row_sums_size)); in InitializeTemporaries()
Dunidirectional_sequence_lstm.cc934 context->ResizeTensor(context, output, output_size)); in Prepare()
971 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scratch_buffer, in Prepare()
987 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
1003 context->ResizeTensor(context, output_state_quantized, in Prepare()
1018 context->ResizeTensor(context, cell_state_quantized, in Prepare()
1040 context, context->ResizeTensor(context, input_sf, input_sf_size)); in Prepare()
1053 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, output_state_sf, in Prepare()
1069 context->ResizeTensor(context, prod_scaling_factors, in Prepare()
1089 context->ResizeTensor(context, recovered_cell_weights, in Prepare()
1108 context, context->ResizeTensor(context, accum_scratch, accum_size)); in Prepare()
[all …]
Dhashtable_lookup.cc94 status = context->ResizeTensor(context, output, outputSize); in Prepare()
96 if (context->ResizeTensor(context, hits, hitSize) != kTfLiteOk) { in Prepare()
Dunique.cc62 return context->ResizeTensor(context, output_index_tensor, in Prepare()
101 context->ResizeTensor(context, unique_output, shape.release())); in EvalImpl()
Dlstm.cc105 return context->ResizeTensor(context, ledger, ledger_size); in make_ledger()
1368 context->ResizeTensor(context, output, output_size)); in Prepare()
1427 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scratch_buffer, in Prepare()
1446 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
1462 context->ResizeTensor(context, output_state_quantized, in Prepare()
1477 context->ResizeTensor(context, cell_state_quantized, in Prepare()
1498 context, context->ResizeTensor(context, input_sf, input_sf_size)); in Prepare()
1511 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, output_state_sf, in Prepare()
1527 context->ResizeTensor(context, prod_scaling_factors, in Prepare()
1547 context->ResizeTensor(context, recovered_cell_weights, in Prepare()
[all …]
Drank.cc48 TF_LITE_ENSURE_STATUS(context->ResizeTensor(context, output, output_size)); in Prepare()
Dconv.cc449 auto output_status = context->ResizeTensor(context, output, output_size); in Prepare()
471 auto im2col_status = context->ResizeTensor(context, im2col, im2col_size); in Prepare()
493 context->ResizeTensor(context, hwcn_weights, hwcn_weights_size); in Prepare()
512 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in Prepare()
532 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in Prepare()
550 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, accum_scratch, in Prepare()
575 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_offsets, in Prepare()
591 context, context->ResizeTensor(context, row_sums, row_sums_size)); in Prepare()
Dround.cc43 return context->ResizeTensor(context, output, output_size); in Prepare()
Dfully_connected.cc64 return context->ResizeTensor(context, ledger, ledger_size); in CreateLedgerTensor()
279 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_quantized, in PrepareImpl()
293 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, scaling_factors, in PrepareImpl()
310 context, context->ResizeTensor(context, accum_scratch, accum_size)); in PrepareImpl()
322 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, input_offsets, in PrepareImpl()
336 context, context->ResizeTensor(context, row_sums, row_sums_size)); in PrepareImpl()
368 context->ResizeTensor(context, output, output_size_array)); in PrepareImpl()
Dif.cc130 context->ResizeTensor(context, output, output_size)); in Prepare()
194 context->ResizeTensor(context, output, output_size)); in Eval()
Dzeros_like.cc42 return context->ResizeTensor(context, output, in Prepare()
Dceil.cc42 return context->ResizeTensor(context, output, output_size); in Prepare()
/external/tensorflow/tensorflow/lite/delegates/flex/
Dutil_test.cc51 TfLiteStatus ResizeTensor(TfLiteContext* context, TfLiteTensor* tensor, in ResizeTensor() function
78 context.ResizeTensor = ResizeTensor; in TEST()
/external/tensorflow/tensorflow/lite/experimental/kernels/
Dunidirectional_sequence_gru.cc184 context->ResizeTensor(context, output, output_size)); in Prepare()
191 context, context->ResizeTensor(context, output_state, in Prepare()
208 context, context->ResizeTensor(context, activation, activation_size)); in Prepare()
220 context->ResizeTensor(context, concat, concat_size)); in Prepare()
/external/libtextclassifier/native/utils/tflite/
Ddist_diversification.cc86 return context->ResizeTensor(context, &output_indices, in AllocateOutputIndexes()
104 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, &output_length, in Prepare()
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/sentencepiece/
Dsentencepiece_tokenizer_tflite.cc101 context->ResizeTensor( in Eval()
109 context, context->ResizeTensor( in Eval()
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/ragged/
Dragged_range_tflite.cc95 context->ResizeTensor(context, &rt_nested_splits_out, in EvalT()
117 context->ResizeTensor(context, &rt_dense_values_out, in EvalT()
/external/tflite-support/tensorflow_lite_support/custom_ops/kernel/
Dngrams.cc101 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, output_values, in Prepare()
115 TF_LITE_ENSURE_OK(context, context->ResizeTensor(context, output_row_splits, in Prepare()

123456