From: Rob Hughes Date: Wed, 21 Nov 2018 13:34:24 +0000 (+0000) Subject: Fix documentation for depthwise convolution X-Git-Tag: submit/tizen/20200316.035456~1036 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=144c01b56d5e8b2f9d8e84a03f7fe975888ee25a;p=platform%2Fupstream%2Farmnn.git Fix documentation for depthwise convolution Change-Id: Ib2bf543fc4f855da94eb1d34a91637f7868321cd --- diff --git a/include/armnn/INetwork.hpp b/include/armnn/INetwork.hpp index ac7faab..ab50abc 100644 --- a/include/armnn/INetwork.hpp +++ b/include/armnn/INetwork.hpp @@ -112,7 +112,7 @@ public: /// Adds a 2D depthwise convolution layer to the network. /// @param convolution2dDescriptor - Description of the 2D depthwise convolution layer. - /// @param weights - Tensor for the weights data. Expected format: [1, outputChannels, height, width]. + /// @param weights - Tensor for the weights. Expected format: [channelMultiplier, inputChannels, height, width]. /// @param biases (Optional) - Tensor for the bias data. Must match the output tensor shape. /// @param name - Optional name for the layer. /// @return - Interface for configuring the layer.