You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2020/10/05 12:48:36 UTC

[incubator-mxnet] branch v1.8.x updated: [1.8] Include oneDNN gemm fix (#19251)

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

zhasheng pushed a commit to branch v1.8.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/v1.8.x by this push:
     new 25bebdf  [1.8] Include oneDNN gemm fix (#19251)
25bebdf is described below

commit 25bebdf55d22359c90f11019dcfb138bcdc10b79
Author: Leonard Lausen <la...@amazon.com>
AuthorDate: Mon Oct 5 05:47:46 2020 -0700

    [1.8] Include oneDNN gemm fix (#19251)
    
    * Include oneDNN gemm fix
    
    * oneDNN v1.6.4
    
    * Update mkldnn_format_tag_last
---
 3rdparty/mkldnn                   | 2 +-
 tests/cpp/operator/mkldnn_test.cc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/3rdparty/mkldnn b/3rdparty/mkldnn
index 5ef631a..570ab9c 160000
--- a/3rdparty/mkldnn
+++ b/3rdparty/mkldnn
@@ -1 +1 @@
-Subproject commit 5ef631a030a6f73131c77892041042805a06064f
+Subproject commit 570ab9c2ea0915b048279438aebb063b8769149c
diff --git a/tests/cpp/operator/mkldnn_test.cc b/tests/cpp/operator/mkldnn_test.cc
index 2e34f7b..b3bd508 100644
--- a/tests/cpp/operator/mkldnn_test.cc
+++ b/tests/cpp/operator/mkldnn_test.cc
@@ -100,7 +100,7 @@ static void VerifyDefMem(const mkldnn::memory &mem) {
 
 TEST(MKLDNN_UTIL_FUNC, MemFormat) {
   // Check whether the number of format is correct.
-  CHECK_EQ(mkldnn_format_tag_last, 205);
+  CHECK_EQ(mkldnn_format_tag_last, 219);
   CHECK_EQ(mkldnn_nchw, 5);
   CHECK_EQ(mkldnn_oihw, 5);
 }