HomeSort by relevance Sort by last modified time
    Searched defs:tflite (Results 526 - 550 of 555) sorted by null

<<212223

  /external/tensorflow/tensorflow/lite/toco/tflite/
export.cc 15 #include "tensorflow/lite/toco/tflite/export.h"
21 #include "tensorflow/lite/toco/tflite/operator.h"
22 #include "tensorflow/lite/toco/tflite/types.h"
29 namespace tflite { namespace in namespace:toco
34 using ::tflite::Buffer;
35 using ::tflite::BuiltinOperator;
36 using ::tflite::BuiltinOperator_CUSTOM;
37 using ::tflite::BuiltinOperator_MAX;
38 using ::tflite::BuiltinOperator_MIN;
39 using ::tflite::CreateBuffer
    [all...]
operator.cc 15 #include "tensorflow/lite/toco/tflite/operator.h"
28 #include "tensorflow/lite/toco/tflite/builtin_operator.h"
29 #include "tensorflow/lite/toco/tflite/custom_operator.h"
30 #include "tensorflow/lite/toco/tflite/simple_operator.h"
31 #include "tensorflow/lite/toco/tflite/types.h"
32 #include "tensorflow/lite/toco/tflite/whitelisted_flex_ops.h"
36 namespace tflite { namespace in namespace:toco
39 : public BuiltinOperator<AveragePoolOperator, ::tflite::Pool2DOptions,
40 ::tflite::BuiltinOptions_Pool2DOptions> {
50 return ::tflite::CreatePool2DOptions(*builder, padding, op.stride_width
    [all...]
  /external/tensorflow/tensorflow/lite/delegates/flex/
kernel.cc 50 namespace tflite { namespace
424 // Given a TfLite tensor index, return the OpNode that produces it,
568 } // namespace tflite
  /external/tensorflow/tensorflow/lite/delegates/nnapi/
nnapi_delegate.cc 38 namespace tflite { namespace
171 // Given a TFLite index return the ANN index. If it doesn't exist
229 // the disparity between TFLite and NN API operand types. NN API has singular
230 // operands for both tensors and parameters, and TFLite separates the two.
    [all...]
nnapi_delegate_test.cc 35 namespace tflite { namespace
    [all...]
  /external/tensorflow/tensorflow/lite/experimental/micro/kernels/portable_optimized/
depthwise_conv.cc 27 namespace tflite { namespace
88 // converted from TFLite's NHWC format to NCHW format, and expressed as signed
293 tflite::DepthwiseParams op_params;
306 tflite::reference_ops::DepthwiseConv(
321 tflite::DepthwiseParams op_params;
379 tflite::reference_ops::DepthwiseConv(
439 } // namespace tflite
  /external/tensorflow/tensorflow/lite/
interpreter_test.cc 26 namespace tflite { namespace
790 TfLiteRegistration* pad_op = tflite::ops::builtin::Register_PADV2();
791 TfLiteRegistration* neg_op = tflite::ops::builtin::Register_NEG();
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/
activations.cc 35 namespace tflite { namespace
254 tflite::PreprocessSoftmaxScaling(
257 data->diff_min = -1.0 * tflite::CalculateInputRadius(
285 tflite::PreprocessLogSoftmaxScalingExp(
290 data->diff_min = -1.0 * tflite::CalculateInputRadius(
    [all...]
bidirectional_sequence_rnn.cc 29 namespace tflite { namespace
694 } // namespace tflite
conv.cc 38 namespace tflite { namespace
319 TF_LITE_ENSURE_STATUS(tflite::PopulateConvolutionQuantizationParams(
753 } // namespace tflite
lstm_eval.cc 24 namespace tflite { namespace
    [all...]
lstm_test.cc 15 // Unit test for TFLite LSTM op.
30 namespace tflite { namespace
    [all...]
unidirectional_sequence_lstm.cc 32 namespace tflite { namespace
573 } // namespace tflite
bidirectional_sequence_lstm_test.cc 15 // Unit test for TFLite Bidirectional LSTM op.
30 namespace tflite { namespace
    [all...]
detection_postprocess.cc 27 namespace tflite { namespace
709 // currently not supported in TFLite.
735 } // namespace tflite
lstm.cc 35 namespace tflite { namespace
    [all...]
bidirectional_sequence_lstm.cc 32 namespace tflite { namespace
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/internal/
common.h 51 namespace tflite { namespace
550 } // namespace tflite
  /external/tensorflow/tensorflow/lite/kernels/internal/optimized/
depthwiseconv_float.h 22 namespace tflite { namespace
    [all...]
legacy_optimized_ops.h 28 namespace tflite { namespace
147 tflite::DepthwiseParams op_params;
218 tflite::DepthwiseParams op_params;
333 tflite::FullyConnectedParams op_params;
365 tflite::FullyConnectedParams op_params;
388 tflite::FullyConnectedParams op_params;
433 tflite::FullyConnectedParams op_params;
466 tflite::ConvParams op_params;
486 tflite::ConvParams op_params;
517 tflite::ConvParams op_params
    [all...]
depthwiseconv_uint8.h 25 namespace tflite { namespace
    [all...]
neon_tensor_utils.cc 35 namespace tflite { namespace
402 // is currently satisfied by TFLite's 16-byte memory
    [all...]
depthwiseconv_uint8_transitional.h 35 namespace tflite { namespace
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/internal/reference/
legacy_reference_ops.h 28 namespace tflite { namespace
34 inline void ShapeFromDims(const tflite::Dims<4>& dims, RuntimeShape* shape) {
48 tflite::DepthwiseParams op_params;
119 tflite::DepthwiseParams op_params;
211 tflite::ConvParams op_params;
285 tflite::ConvParams op_params;
379 tflite::ConvParams op_params;
399 tflite::FullyConnectedParams op_params;
431 tflite::FullyConnectedParams op_params;
456 tflite::FullyConnectedParams op_params
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/internal/
types.h 29 namespace tflite { namespace
279 // Converts inference-style shape to legacy tflite::Dims<4>.
280 inline tflite::Dims<4> ToRuntimeDims(const tflite::RuntimeShape& array_shape) {
281 tflite::Dims<4> result;
296 inline RuntimeShape DimsToShape(const tflite::Dims<4>& dims) {
991 } // namespace tflite

Completed in 5695 milliseconds

<<212223