You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by zh...@apache.org on 2020/01/10 17:01:07 UTC

[incubator-tvm] branch master updated (f16f245 -> 54fb55a)

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

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


    from f16f245  [VTA] Update docker for TSIM based simulation (#4674)
     add 54fb55a  [CodeGen] Generate blob use LLVM directly (#4657)

No new revisions were added by this update.

Summary of changes:
 cmake/util/FindLLVM.cmake                          |   3 +
 include/tvm/codegen.h                              |  15 ++
 python/tvm/contrib/cc.py                           |  40 ++++-
 python/tvm/contrib/ndk.py                          |   4 +
 python/tvm/module.py                               |  24 ++-
 src/api/api_codegen.cc                             |   3 +
 src/codegen/codegen.cc                             |  45 +++++-
 src/codegen/llvm/codegen_blob.cc                   | 162 +++++++++++++++++++++
 .../{codegen_vhls.h => llvm/codegen_blob.h}        |  43 +++---
 src/codegen/llvm/llvm_module.cc                    |  42 +++++-
 tests/python/unittest/test_codegen_blob.py         | 104 +++++++++++++
 11 files changed, 444 insertions(+), 41 deletions(-)
 create mode 100644 src/codegen/llvm/codegen_blob.cc
 copy src/codegen/{codegen_vhls.h => llvm/codegen_blob.h} (53%)
 create mode 100644 tests/python/unittest/test_codegen_blob.py