Skip to content

GAP SDK RELEASE NOTE V3.3.3

Compare
Choose a tag to compare
@haugoug haugoug released this 10 Apr 21:20
· 82 commits to master since this release
26be9ac

NEW FEATURES

Autotiler

  • Generators api changed, now the fixed point format is passed when generating the code:
    In_Q: In fixed point format
    Filter_Q: Filter fixed point format
    Bias_Q: Bias fixed point format
    Out_Q: Out fixed point format
    For CNN_ConvolutionPoolReLU:
    bias norm si calcualted as Filter_Q+In_Q-Bias_Q
    while output adjust is calculated as Filter_Q+In_Q-Out_Q
    for multiplicative bias you can see formula in generators.
  • Added swish activation
  • Added relu6 activation
  • Added leaky relu activation
  • Added sigmoid activation
  • Lots of bug fixing

NNTool

  • Support for new autotiler generators and new activations.
  • Support for mul scaling.