You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by pa...@apache.org on 2020/04/13 02:36:09 UTC

[incubator-mxnet] branch master updated (0bff90d -> 8f6d116)

This is an automated email from the ASF dual-hosted git repository.

patriczhao pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


    from 0bff90d  Support projection feature of LSTM (#17996)
     add 8f6d116  [MKL-DNN] BatchNormRelu Fusion (#17679)

No new revisions were added by this update.

Summary of changes:
 python/mxnet/gluon/contrib/nn/basic_layers.py  |   3 +-
 python/mxnet/gluon/nn/basic_layers.py          | 142 +++++++++++-
 src/operator/contrib/batch_norm_relu.cc        | 298 +++++++++++++++++++++++++
 src/operator/nn/batch_norm.cc                  |   8 +-
 src/operator/nn/mkldnn/mkldnn_batch_norm-inl.h |  49 +++-
 tests/python/mkl/test_mkldnn.py                |  60 +++++
 6 files changed, 540 insertions(+), 20 deletions(-)
 create mode 100644 src/operator/contrib/batch_norm_relu.cc