The present invention relates to a neural network engine.
A processing flow for typical Convolutional Neural Network (CNN) is presented in
CNN processing comprises two stages:
CNN feature extraction 12 typically comprises a number of processing layers 1 . . . N, where:
A convolution kernel also has 3×3×3=27 values or weights pre-calculated during a training phase of the CNN. The cube 16 of input map pixel values is combined with the convolution kernel values 18 using a dot product function 20. After the dot product is calculated, an activation function 22 is applied to provide the output pixel value. The activation function 22 can comprise a simple division, as normally done for convolution, or a more complex function such as sigmoid function or a rectified linear unit (ReLU) activation function of the form: yj=h(xj)=max(0,xj) as typically used in neural networks.
In this case, for 2D convolution, where a single input image/map is being used, the input image/map would be scanned with a 3×3 kernel to produce the pixels of a corresponding output map.
Within a CNN Engine such as disclosed in PCT Application No. PCT/EP2016/081776 (Ref: FN-481-PCT) a processor needs to efficiently implement the logic required to perform the processing of different layers such as convolution layers and pooling layers.
According to the present invention there is provided a neural network engine according to claim 1.
Embodiments of the present invention incorporate a module for outputting floating point results for pooling or convolution layer operations in a neural network processor.
By sharing the resources needed for both layer types, the processing pipeline within the neural network engine can be kept simple with the number of logic gates as low as possible.
Embodiments of the invention will now be described, by way of example, with reference to the accompanying drawings, in which:
A floating point (FP) representation is usually employed for both the convolution kernel weights and image/map values processed by a CNN engine. A typical format suited for a hardware CNN engine implementation is 16 bit, half precision floating point (IEEE 754-2008). However, 8-bit FP representations can also be used and PCT Application No. PCT/EP2016/081776 (Ref: FN-481-PCT) discloses how a default FP exponent bias can changed to a custom value to avoid needing to use higher precision FP formats.
The sign bits s1,s2 of these operands are in turn used through multiplexer 42 to select between a version of m1 shifted according to the difference between exp2 and exp1 subtracted from m2; or the shifted version of m1 added to m2; and through multiplexer 44 to select between a version of m2 shifted according to the difference between exp2 and exp1 subtracted from m1; or the shifted version of m2 added to m1. Now using multiplexers 46, 48 and 50 depending on the output O/P of the comparator 40, the output of either multiplexer 42 or 44 is chosen to generate the mantissa for the output of the adder, the value of the mantissa is also used to adjust whichever of exp1 or exp2 are selected by multiplexer 48 to generate the exponent for the output of the adder, while the sign for the output of the adder is chosen as either s1 or s2.
Note that this adder is shown for exemplary purposes only and the present invention is equally applicable to any equivalent floating point adder.
Referring now to
Separately,
Looking at the trees of
It will also been seen that any floating point adder such as the adder of
Referring now to
In the embodiment, the output of the final node in the tree 32′ and an output of one of the multipliers 32 are fed to an output module 60 as In0 and In1 respectively.
The circuitry 70 is configured to operate in a number of different modes:
In
Finally,
Again, the trees presented here are just an example for 3×3 kernels. Other kernel sizes can be easily implemented.
As indicated, convolution needs an activation function 22 to be applied to the dot product 20 of the input image/map values 16 and weight kernel values 18. Currently, the most used activation function are Identity function i.e. no activation function is applied, ReLU and
PReLU.
As shown in
ReLU(x)=x for x>0
ReLU(x)=0 for x<=0
PReLU (Parametric ReLU), a more general form of ReLU function, is defined as follows:
pReLU(x)=x for x>0
pReLU(x)=x/slope_coef for x<=0
Some embodiments of the present invention do not employ a precise slope and instead only use a slope with values that are a power of two. Although such slopes can be used as an approximation of a specified slope, this approach works best, if the network is trained with the approximated PReLU function, rather than approximating the PReLU function after training.
In any case, such an approximation needs two inputs:
Thus, referring to
pReLU(x)=x for x>0
pReLU(x)=x/(2{circumflex over ( )}Coef) for x<=0 and PSlope=0
pReLU(x)=−x/(2{circumflex over ( )}Coef) for x<=0 and PSlope=1
Looking at the approximated PReLU activation function, it will be seen that it only needs to modify the exponent of the input.
Referring now to
The activation input can have two bits and can select between three types of activation as shown in Table 1. It will therefore be appreciated that one or more activation functions can be added, especially by increasing the number of control bits.
For PReLU, the coefficients can be coded with 4 bits, representing the logarithm of the coefficient:
The output module 60 can take advantage of the floating point number pipeline with division by the power of two coefficient being done by subtracting the 4 bit PReLU coefficient instruction field value from the FP16 exponent value of the sum of In0 and In1 (or possibly the larger of the two, as will be explained below).
Using this scheme, an identity activation function can be implemented as a form of PReLU with PSlope=0 and Coef=0000, thus enabling the activation input to be defined with a single binary activation input with settings ReLU=0 or PReLU=1, so that the PReLU function shown in
pReLU(x)=x for x>0
pReLU(x)=(x/(2{circumflex over ( )}Coef) for x<=0 and PSlope=0)*Activation Input
pReLU(x)=(−x/(2{circumflex over ( )}Coef) for x<=0 and PSlope=1)*Activation Input,
so enabling the function to be implemented in a single pipeline.
The special cases for subnormal/infinite can treated by the logic implementing the PReLU activation function in the following way:
It will be appreciated that normally, an activation function other than the identity function would only be used when processing convolution layers. However, using an output module 60 with configuration controls such as shown in
Referring now to
Referring to
One way to provide this second output is for the second output to comprise a binary value indicating the maximum operand e.g. 0 for In0 or 1 for In0. Such an output could also find application for functions other than PEAK.
In a still further variant, it is also possible for the tree 32′ to simultaneously provide a result of two pooling operations. In the example of
It will also be seen that the 2×2 pooling approach shown in
It will be appreciated that where only particular sized windows for 2D or 3D convolution or pooling were to be processed, the connections from input image/map and kernel values 16, 18 to the multipliers 30 could hardwired. However, where window sizes can vary, then especially for peak layer processing and sub-window pooling, multiplexer circuitry (not shown) would need to be interposed between the inputs 16, 18 for the engine and the multipliers 30.
The above described embodiments can be implemented with a number of variants of a basic floating point adder:
Using these variants of adder, a common engine such as the CNN engine disclosed in PCT Application No. PCT/EP2016/081776 (Ref: FN-481-PCT) can be reconfigured for convolution, pooling or peak operations with minimal extra logic by comparison to implementing any given layer independently.
The present application relates to International PCT Application No. PCT/EP2016/081776 (Ref: FN-481-PCT), the disclosure of which is incorporated herein by reference.