You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by gi...@apache.org on 2022/06/11 01:35:30 UTC

[tvm] branch last-successful updated (dc522a6ff6 -> 705993e485)

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

github-bot pushed a change to branch last-successful
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from dc522a6ff6 [Hexagon] Run single RPC server on Android in each testing session  (#11547)
     add e8712a9198 [BYOC][DNNL] Improve performance of DNNL BYOC dense operator (#11513)
     add 705993e485 [DNNL][CBLAS][BYOC] Unifles all MKLDNN/DNNL  to DNNL (#11638)

No new revisions were added by this update.

Summary of changes:
 CMakeLists.txt                                     |   3 +-
 cmake/config.cmake                                 |  17 ++-
 cmake/modules/LibInfo.cmake                        |   3 +-
 cmake/modules/contrib/BLAS.cmake                   |  29 -----
 cmake/modules/contrib/DNNL.cmake                   |  32 +++++-
 docs/dev/how_to/relay_bring_your_own_codegen.rst   |   2 +-
 python/tvm/contrib/{mkldnn.py => dnnl.py}          |   4 +-
 python/tvm/relay/op/contrib/dnnl.py                | 123 ++++++++++++++++++++-
 python/tvm/relay/op/strategy/x86.py                |  38 +++----
 python/tvm/target/target.py                        |   6 +
 python/tvm/topi/x86/conv2d.py                      |  30 ++---
 python/tvm/topi/x86/dense.py                       |  30 ++---
 src/relay/backend/contrib/dnnl/codegen.cc          |   4 +-
 src/relay/backend/utils.h                          |  32 ++++++
 .../contrib/cblas/{mkldnn.cc => dnnl_blas.cc}      |  12 +-
 src/runtime/contrib/dnnl/dnnl.cc                   |   2 +-
 src/runtime/contrib/dnnl/dnnl_json_runtime.cc      |   9 +-
 src/support/libinfo.cc                             |  11 +-
 tests/python/contrib/test_cblas.py                 |  18 +--
 tests/python/contrib/test_dnnl.py                  | 103 ++++++++++++++---
 tests/python/relay/test_op_level2.py               |  20 ++--
 tests/python/relay/test_pass_partition_graph.py    |   6 +-
 tests/scripts/task_config_build_cpu.sh             |   2 +-
 23 files changed, 380 insertions(+), 156 deletions(-)
 rename python/tvm/contrib/{mkldnn.py => dnnl.py} (97%)
 rename src/runtime/contrib/cblas/{mkldnn.cc => dnnl_blas.cc} (78%)