STT-tensorflow/tensorflow/lite/delegates/xnnpack
TensorFlower Gardener 57bbc5e0d4 Merge pull request #45076 from dev0x13:patch-2
PiperOrigin-RevId: 356038426
Change-Id: I0eddfa821bff7c535bf5df286ac13760cdb6e3a2
2021-02-06 10:13:51 -08:00
..
abs_test.cc
add_test.cc
average_pool_2d_test.cc Support 1x1 Max/Average Pooling with 1x1 stride in XNNPACK delegate 2020-07-10 17:19:40 -07:00
binary_elementwise_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
binary_elementwise_tester.h
BUILD Support ELU operator in XNNPACK delegate 2020-12-02 00:48:33 -08:00
ceil_test.cc
conv_2d_test.cc Support sparse FP16 weights in XNNPACK delegate 2020-11-30 15:14:40 -08:00
conv_2d_tester.cc Support sparse FP16 weights in XNNPACK delegate 2020-11-30 15:14:40 -08:00
conv_2d_tester.h
depth_to_space_test.cc Support DEPTH_TO_SPACE in XNNPACK delegate 2020-11-30 08:27:36 -08:00
depth_to_space_tester.cc Support DEPTH_TO_SPACE in XNNPACK delegate 2020-11-30 08:27:36 -08:00
depth_to_space_tester.h Support DEPTH_TO_SPACE in XNNPACK delegate 2020-11-30 08:27:36 -08:00
depthwise_conv_2d_test.cc
depthwise_conv_2d_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
depthwise_conv_2d_tester.h
div_test.cc
elu_test.cc Support ELU operator in XNNPACK delegate 2020-12-02 00:48:33 -08:00
floor_test.cc
fully_connected_test.cc
fully_connected_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
fully_connected_tester.h
hard_swish_test.cc
leaky_relu_test.cc
leaky_relu_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
leaky_relu_tester.h
logistic_test.cc
max_pool_2d_test.cc Support 1x1 Max/Average Pooling with 1x1 stride in XNNPACK delegate 2020-07-10 17:19:40 -07:00
maximum_test.cc
mean_test.cc Delegate MEAN operator without keep_dims attribute to XNNPACK 2020-10-25 03:55:58 -07:00
minimum_test.cc
mul_test.cc
neg_test.cc
pad_test.cc
pad_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
pad_tester.h
pool_2d_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
pool_2d_tester.h
prelu_test.cc
prelu_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
prelu_tester.h
README.md Merge pull request #45061 from dev0x13:patch-1 2020-12-22 19:49:00 -08:00
reduce_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
reduce_tester.h
relu6_test.cc
relu_n1_to_1_test.cc
relu_test.cc
reshape_test.cc
reshape_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
reshape_tester.h
resize_bilinear_test.cc Support RESIZE_BILINEAR operator in XNNPACK delegate 2020-07-23 02:44:42 -07:00
resize_bilinear_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
resize_bilinear_tester.h Support RESIZE_BILINEAR operator in XNNPACK delegate 2020-07-23 02:44:42 -07:00
round_test.cc
softmax_test.cc
softmax_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
softmax_tester.h
sqrt_test.cc
square_test.cc
squared_difference_test.cc
sub_test.cc
unary_elementwise_tester.cc Split getter and setter functions in schema utility files. 2020-10-27 14:12:18 -07:00
unary_elementwise_tester.h
xnnpack_delegate.cc Merge pull request #45076 from dev0x13:patch-2 2021-02-06 10:13:51 -08:00
xnnpack_delegate.h

XNNPACK backend for TensorFlow Lite

XNNPACK is a highly optimized library of floating-point neural network inference operators for ARM, x86, and WebAssembly architectures in Android, iOS, Windows, Linux, macOS, and Emscripten environments. This document describes how to use the XNNPACK library as an inference engine for TensorFlow Lite.

Using XNNPACK engine with TensorFlow Lite interpreter

XNNPACK integrates with TensorFlow Lite interpreter through the delegation mechanism. TensorFlow Lite supports several methods to enable XNNPACK for floating-point inference.

Pre-built nightly TensorFlow Lite binaries for Android include XNNPACK, albeit it is disabled by default. Use the setUseXNNPACK method in Interpreter.Options class to enable it:

Interpreter.Options interpreterOptions = new Interpreter.Options();
interpreterOptions.setUseXNNPACK(true);
Interpreter interpreter = new Interpreter(model, interpreterOptions);

Pre-built nightly TensorFlow Lite CocoaPods include XNNPACK, but do not enable it by default. Swift developers can use InterpreterOptions object to enable XNNPACK:

var options = InterpreterOptions()
options.isXNNPackEnabled = true
var interpreter = try Interpreter(modelPath: "model/path", options: options)

Objective-C developers can enable XNNPACK via a new property in the TFLInterpreterOptions class:

TFLInterpreterOptions *options = [[TFLInterpreterOptions alloc] init];
options.useXNNPACK = YES;
NSError *error;
TFLInterpreter *interpreter =
    [[TFLInterpreter alloc] initWithModelPath:@"model/path"
                                      options:options
                                        error:&error];

When building TensorFlow Lite with Bazel, add --define tflite_with_xnnpack=true, and the TensorFlow Lite interpreter will use XNNPACK engine by default.

The exact command depends on the target platform, e.g. for Android AAR you'd use

bazel build -c opt --fat_apk_cpu=x86,x86_64,arm64-v8a,armeabi-v7a \
  --host_crosstool_top=@bazel_tools//tools/cpp:toolchain \
  --define tflite_with_xnnpack=true \
  //tensorflow/lite/java:tensorflow-lite

Note that in this case Interpreter::SetNumThreads invocation does not take effect on number of threads used by XNNPACK engine. In order to specify number of threads available for XNNPACK engine you should manually pass the value when constructing the interpreter. The snippet below illustrates this assuming you are using InterpreterBuilder to construct the interpreter:

// Load model
tflite::Model* model;
...

// Construct the interprepter
tflite::ops::builtin::BuiltinOpResolver resolver;
std::unique_ptr<tflite::Interpreter> interpreter;

TfLiteStatus res = tflite::InterpreterBuilder(model, resolver, num_threads);

XNNPACK engine used by TensorFlow Lite interpreter uses a single thread for inference by default.

Enable XNNPACK via additional dependency

Another way to enable XNNPACK is to build and link the //tensorflow/lite:tflite_with_xnnpack target into your application alongside the TensorFlow Lite framework.

This method works on platforms which support POSIX-style weak symbols (Android, iOS, Linux, Mac, but NOT Windows).

While it is possible to use low-level delegate API to enable XNNPACK, this method is NOT RECOMMENDED unless you need to use TensorFlow Lite both with and without XNNPACK (e.g. for benchmarking).

With low-level delegate API users create an XNNPACK delegate with the TfLiteXNNPackDelegateCreate function, and then call Interpreter::ModifyGraphWithDelegate to delegate supported parts of the model to the XNNPACK delegate. The users must destroy the delegate with TfLiteXNNPackDelegateDelete after releasing the TensorFlow Lite interpreter. The snippet below illustrates the typical usage:

// Build the interpreter
std::unique_ptr<tflite::Interpreter> interpreter;
...

// IMPORTANT: initialize options with TfLiteXNNPackDelegateOptionsDefault() for
// API-compatibility with future extensions of the TfLiteXNNPackDelegateOptions
// structure.
TfLiteXNNPackDelegateOptions xnnpack_options =
    TfLiteXNNPackDelegateOptionsDefault();
xnnpack_options.num_threads = num_threads;

TfLiteDelegate* xnnpack_delegate =
    TfLiteXNNPackDelegateCreate(&xnnpack_options);
if (interpreter->ModifyGraphWithDelegate(xnnpack_delegate) != kTfLiteOk) {
  // Report error and fall back to another delegate, or the default backend
}

...

// Run inference using XNNPACK
interpreter->Invoke()

...

// IMPORTANT: release the interpreter before destroying the delegate
interpreter.reset();
TfLiteXNNPackDelegateDelete(xnnpack_delegate);

Limitations and supported operators

XNNPACK delegate is a work-in-progress, and currently supports a limited set of operators. Unsupported operators will fall back to the default implementations, so models using a combination of supported and unsupported operators can still benefit from XNNPACK delegate.

Below is the list of current operators and limitations:

ABS

  • Inputs and outputs must be in 32-bit floating-point format.

ADD

  • Inputs and outputs must be in 32-bit floating-point format.
  • Only addition with two inputs is supported.
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

AVERAGE_POOL_2D

  • Inputs and outputs must be in 32-bit floating-point format.
  • 1x1 pooling with non-unit stride is not supported.
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

CEIL

  • Inputs and outputs must be in 32-bit floating-point format.

CONV_2D

  • Inputs and outputs must be in 32-bit floating-point format.
  • Bias is mandatory.
  • Both filter and bias must be static (use kTfLiteMmapRo allocation type).
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

DEPTH_TO_SPACE

  • Inputs and outputs must be in 32-bit floating-point format.
  • Block size must be greater than 1.

DEPTHWISE_CONV_2D

  • Inputs and outputs must be in 32-bit floating-point format.
  • Bias is mandatory.
  • Both filter and bias must be static (use kTfLiteMmapRo allocation type).
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

DIV

  • Inputs and outputs must be in 32-bit floating-point format.
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

ELU

  • Inputs and outputs must be in 32-bit floating-point format.

FULLY_CONNECTED

  • Inputs and outputs must be in 32-bit floating-point format.
  • Bias is mandatory.
  • Both filter and bias must be static (use kTfLiteMmapRo allocation type).
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

FLOOR

  • Inputs and outputs must be in 32-bit floating-point format.

HARD_SWISH

  • Inputs and outputs must be in 32-bit floating-point format.

LEAKY_RELU

  • Inputs and outputs must be in 32-bit floating-point format.

LOGISTIC

  • Inputs and outputs must be in 32-bit floating-point format.

MAX_POOL_2D

  • Inputs and outputs must be in 32-bit floating-point format.
  • 1x1 pooling with non-unit stride is not supported.
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

MAXIMUM

  • Inputs and outputs must be in 32-bit floating-point format.

MEAN

  • The first input and the output must be a 4D tensors in 32-bit floating-point format.
  • The second input (the input with the axes specification) must be static (use kTfLiteMmapRo allocation type).
  • Only [1, 2] or [2, 1] axes specification (i.e. reduction across spatial dimensions) is supported.
  • Only keep_dims = True parameter value is supported.

MINIMUM

  • Inputs and outputs must be in 32-bit floating-point format.

MUL

  • Inputs and outputs must be in 32-bit floating-point format.
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

NEG

  • Inputs and outputs must be in 32-bit floating-point format.

PAD

  • The first input and the output must be in 32-bit floating-point format.
  • The second input (the input with the padding specification) must be static (use kTfLiteMmapRo allocation type).
  • The numbers of padding elements must be non-negative.

PRELU

  • Inputs and outputs must be in 32-bit floating-point format.
  • Slope must be static (use kTfLiteMmapRo allocation type).
  • Slope must be either a 1D tensor, or have all its non-channel dimensions equal 1.

RELU

  • Inputs and outputs must be in 32-bit floating-point format.

RELU6

  • Inputs and outputs must be in 32-bit floating-point format.

RELU_N1_TO_1

  • Inputs and outputs must be in 32-bit floating-point format.

RESHAPE

  • The first input and the output must be in 32-bit floating-point format.
  • The second input (the input with the new shape specification) must be either static (use kTfLiteMmapRo allocation type), or absent (with the new shape specified via ReshapeOptions table).

RESIZE_BILINEAR

  • The first input and the output must be 4D tensors in 32-bit floating-point format.
  • The second input (the input with the new shape specification) must be static (use kTfLiteMmapRo allocation type).

ROUND

  • Inputs and outputs must be in 32-bit floating-point format.

SOFTMAX

  • Inputs and outputs must be in 32-bit floating-point format.
  • Only beta = 1.0 is supported.

SQRT

  • Inputs and outputs must be in 32-bit floating-point format.

SQUARE

  • Inputs and outputs must be in 32-bit floating-point format.

SQUARED_DIFFERENCE

  • Inputs and outputs must be in 32-bit floating-point format.

SUB

  • Inputs and outputs must be in 32-bit floating-point format.
  • Fused NONE, RELU, RELU_N1_TO_1, and RELU6 activations are supported, but fused TANH and SIGN_BIT activations are not.

Sparse Inference

XNNPACK backend supports sparse inference for CNN models described in the Fast Sparse ConvNets paper. Sparse inference is restricted to subgraphs with the following operators:

  • Sparse subgraph must store its weights in sparse representation (using DENSIFY operators in the TensorFlow Lite schema).
  • Sparse subgraph must start with a 3x3 stride-2 CONV_2D operator with padding 1 on each side, no dilation, and 3 input channels.
  • Sparse subgraph must end with either a MEAN operator with reduction across spatial axes, or a DEPTH_TO_SPACE operator.
  • Sparse subgraph may contain the following operators:
    • CONV_2D with 1x1 kernel and no padding. At least 2/3rd of filter weights in the 1x1 CONV_2D operators across the sparse subgraph must be zeroes to enable sparse inference.
    • DEPTHWISE_CONV_2D with 3x3 kernel, stride 1, no dilation, and padding 1 on each side.
    • DEPTHWISE_CONV_2D with 3x3 kernel, stride 2, no dilation, and padding 1 on each side.
    • DEPTHWISE_CONV_2D with 5x5 kernel, stride 1, no dilation, and padding 2 on each side.
    • DEPTHWISE_CONV_2D with 5x5 kernel, stride 2, no dilation, and padding 2 on each side.
    • RESIZE_BILINEAR operator with output dimensions greater than 1.
    • MEAN operator with reduction across spatial axes.
    • ADD and MUL operators where both inputs are 4D tensors. If one of the inputs to ADD or MUL is a constant tensor, it must be representable as either a scalar, or a 1D vector.
    • Unary elementwise operators ABS, CEIL, ELU, FLOOR, HARD_SWISH, LEAKY_RELU, LOGISTIC, NEG, RELU, RELU6, RELU_N1_TO_1, ROUND, SIGMOID, and SQUARE.

Pre-trained Fast Sparse ConvNets models provide examples that satisfy these constrains.

Other limitations

  • Dynamically allocated (with kTfLiteDynamic allocation type) inputs and outputs are not supported.
  • Resizing model inputs (via Interpreter::ResizeInputTensor) is supported, but cause a complete reinitialization of the delegate instance, which has considerable overhead.