From 96becb7e4f5f510344c3850278a706d63a564fc4 Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Tue, 16 Jun 2020 12:41:49 +0100 Subject: Revert "IVGCVSW-3726 Upload ArmNN Doxygen files" This reverts commit de36e4a9c299028e792c3a5bd99ad0816d806077. Signed-off-by: Jan Eilers Change-Id: Idbf20c12ea07583ca552d7cc7fb517fbadc73fff --- .../md_src_armnn_caffe_parser__caffe_support.html | 133 --------------------- 1 file changed, 133 deletions(-) delete mode 100644 Documentation/md_src_armnn_caffe_parser__caffe_support.html (limited to 'Documentation/md_src_armnn_caffe_parser__caffe_support.html') diff --git a/Documentation/md_src_armnn_caffe_parser__caffe_support.html b/Documentation/md_src_armnn_caffe_parser__caffe_support.html deleted file mode 100644 index e5ef72b5db..0000000000 --- a/Documentation/md_src_armnn_caffe_parser__caffe_support.html +++ /dev/null @@ -1,133 +0,0 @@ - - - - - - - -ArmNN: CaffeSupport - - - - - - - - - - - - - - -
-
- - - - - - -
-
ArmNN -  NotReleased -
-
-
- - - - - - - -
-
- -
-
-
- -
- -
-
- - -
- -
- -
-
-
CaffeSupport
-
-
-

#Caffe layers supported by the Arm NN SDK This reference guide provides a list of Caffe layers the Arm NN SDK currently supports.

-

Although some other neural networks might work, Arm tests the Arm NN SDK with Caffe implementations of the following neural networks:

-
    -
  • AlexNet.
  • -
  • Cifar10.
  • -
  • Inception-BN.
  • -
  • Resnet_50, Resnet_101 and Resnet_152.
  • -
  • VGG_CNN_S, VGG_16 and VGG_19.
  • -
  • Yolov1_tiny.
  • -
  • Lenet.
  • -
  • MobileNetv1.
  • -
-

The Arm NN SDK supports the following machine learning layers for Caffe networks:

-
    -
  • BatchNorm, in inference mode.
  • -
  • Convolution, excluding the Dilation Size, Weight Filler, Bias Filler, Engine, Force nd_im2col, and Axis parameters.

    -

    Caffe doesn't support depthwise convolution, the equivalent layer is implemented through the notion of groups. ArmNN supports groups this way:

      -
    • when group=1, it is a normal conv2d
    • -
    • when group=#input_channels, we can replace it by a depthwise convolution
    • -
    • when group>1 && group<#input_channels, we need to split the input into the given number of groups, apply a separate convolution and then merge the results
    • -
    -
  • -
  • Concat, along the channel dimension only.
  • -
  • Dropout, in inference mode.
  • -
  • Eltwise, excluding the coeff parameter.
  • -
  • Inner Product, excluding the Weight Filler, Bias Filler, Engine, and Axis parameters.
  • -
  • Input.
  • -
  • LRN, excluding the Engine parameter.
  • -
  • Pooling, excluding the Stochastic Pooling and Engine parameters.
  • -
  • ReLU.
  • -
  • Scale.
  • -
  • Softmax, excluding the Axis and Engine parameters.
  • -
  • Split.
  • -
-

More machine learning layers will be supported in future releases.

-
-
- - - - -- cgit v1.2.1