You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/10/25 23:37:52 UTC

[incubator-tvm] branch main updated (cd30493 -> c6f1825)

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

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


    from cd30493  [CI] Update wasm emcc to latest (#6755)
     add c6f1825  [CI] Introduce all platform test for windows/mac/linux. (#6756)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/main.yml                         |  84 ++++++-----
 .../_ffi_api.py => conda/build-environment.yaml    |  19 ++-
 conda/recipe/meta.yaml                             |   6 +
 include/tvm/runtime/packed_func.h                  |  42 ++++--
 python/setup.py                                    |  36 +++--
 python/tvm/_ffi/registry.py                        |   4 +-
 python/tvm/runtime/ndarray.py                      |   4 +-
 python/tvm/runtime/object.py                       |   4 +-
 python/tvm/runtime/packed_func.py                  |   4 +-
 .../python/all-platform-minimal-test}/README.md    |  20 +--
 .../test_minimal_target_codegen_llvm.py}           | 110 ++++++--------
 .../test_runtime_ndarray.py                        |   2 +
 .../test_runtime_packed_func.py                    | 166 +++++++++++++++++++++
 ...untime_packed_func.py => test_runtime_trace.py} | 143 ------------------
 tests/python/unittest/test_target_codegen_llvm.py  |  78 ----------
 tests/scripts/task_python_unittest.sh              |   4 +-
 16 files changed, 354 insertions(+), 372 deletions(-)
 copy python/tvm/auto_scheduler/_ffi_api.py => conda/build-environment.yaml (79%)
 copy {apps/howto_deploy => tests/python/all-platform-minimal-test}/README.md (59%)
 copy tests/python/{unittest/test_target_codegen_c_host.py => all-platform-minimal-test/test_minimal_target_codegen_llvm.py} (55%)
 rename tests/python/{unittest => all-platform-minimal-test}/test_runtime_ndarray.py (98%)
 create mode 100644 tests/python/all-platform-minimal-test/test_runtime_packed_func.py
 rename tests/python/unittest/{test_runtime_packed_func.py => test_runtime_trace.py} (72%)