Home
last modified time | relevance | path

Searched refs:GetInputTensor (Results 1 – 12 of 12) sorted by relevance

/external/tensorflow/tensorflow/lite/tools/benchmark/
Dbenchmark_test.cc132 const TfLiteTensor* GetInputTensor(int index) { in GetInputTensor() function in tflite::benchmark::__anona75ccbf60211::TestBenchmark
233 auto input_tensor = benchmark.GetInputTensor(0); in TEST()
263 CheckInputTensorValue(benchmark.GetInputTensor(1), file_value_b); in TEST()
264 CheckInputTensorValue(benchmark.GetInputTensor(3), file_value_d); in TEST()
283 CheckInputTensorValue(benchmark.GetInputTensor(0), file_value); in TEST()
310 auto input_tensor = benchmark.GetInputTensor(0); in TEST()
/external/tensorflow/tensorflow/lite/kernels/shim/
Dop_kernel.h116 ConstTensorViewOr GetInputTensor(const int idx) const { in GetInputTensor() function
117 return static_cast<const SubType&>(*this).GetInputTensor(idx); in GetInputTensor()
Dtf_op_shim.h78 ConstTensorViewOr GetInputTensor(const int idx) const;
Dtflite_op_shim.h87 ConstTensorViewOr GetInputTensor(const int idx) const;
Dtflite_op_shim.cc148 ConstTensorViewOr TfLiteShapeInferenceContext::GetInputTensor( in GetInputTensor() function in tflite::shim::TfLiteShapeInferenceContext
Dtf_op_shim.cc139 ConstTensorViewOr TfShapeInferenceContext::GetInputTensor(const int idx) const { in GetInputTensor() function in tflite::shim::TfShapeInferenceContext
DREADME.md169 ConstTensorViewOr GetInputTensor(const int idx) const;
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dmodel_builder.cc118 const TfLiteTensor* input0 = reader->GetInputTensor(0); in ParseInputsWithConstTensor()
123 const TfLiteTensor* input1 = reader->GetInputTensor(1); in ParseInputsWithConstTensor()
537 const TfLiteTensor* const_tensor = reader->GetInputTensor(0); in Parse()
585 const TfLiteTensor* input = reader->GetInputTensor(0); in Parse()
586 const TfLiteTensor* filter = reader->GetInputTensor(1); in Parse()
677 const TfLiteTensor* tflite_input = reader->GetInputTensor(0); in Parse()
792 IsConstantTensor(reader->GetInputTensor(0)); in Parse()
1148 const TfLiteTensor* input0 = reader->GetInputTensor(0); in Parse()
1153 const TfLiteTensor* input1 = reader->GetInputTensor(1); in Parse()
1444 const TfLiteTensor* input = reader->GetInputTensor(0); in Parse()
[all …]
Dobject_reader.h131 TfLiteTensor* GetInputTensor(int index) const;
Dobject_reader.cc224 TfLiteTensor* ObjectReader::GetInputTensor(int index) const { in GetInputTensor() function in tflite::gpu::ObjectReader
Dlstm_parser.cc58 reader->GetInputTensor(weights_tensor_id); in GetFullyConnectedNode()
/external/tensorflow/tensorflow/lite/kernels/shim/test_op/
Dsimple_op.h134 const auto input_t_or = ctx->GetInputTensor(kInput0); in ShapeInference()