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

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


    from 7d263c3  Mxnet parser for Qnn dialect (#4714)
     add fc7dd6d  [REFACTOR][PY] Establish tvm.runtime (#4818)

No new revisions were added by this update.

Summary of changes:
 python/tvm/__init__.py                             |  27 +-
 python/tvm/_ffi/_ctypes/packed_func.py             |   4 +-
 python/tvm/_ffi/_cython/packed_func.pxi            |   4 +-
 python/tvm/_ffi/module.py                          |  98 -----
 python/tvm/_ffi/runtime_ctypes.py                  |  10 +-
 python/tvm/api.py                                  |   4 +-
 python/tvm/arith.py                                |   3 +-
 python/tvm/attrs.py                                |   2 +-
 python/tvm/build_module.py                         |   3 +-
 python/tvm/container.py                            |  28 +-
 python/tvm/contrib/debugger/debug_runtime.py       |   2 +-
 python/tvm/contrib/nvcc.py                         |   3 +-
 python/tvm/datatype.py                             |   4 +-
 python/tvm/expr.py                                 |   7 +-
 python/tvm/ir_builder.py                           |  11 +-
 python/tvm/ndarray.py                              | 233 -----------
 python/tvm/relay/backend/graph_runtime_codegen.py  |   4 +-
 python/tvm/relay/backend/vm.py                     |   4 +-
 python/tvm/relay/base.py                           |   3 +-
 python/tvm/relay/expr.py                           |   8 +-
 python/tvm/relay/memory_alloc.py                   |   8 +-
 python/tvm/relay/op/annotation/annotation.py       |   7 +-
 python/tvm/relay/op/tensor.py                      |   7 +-
 python/tvm/rpc/client.py                           |   8 +-
 python/tvm/rpc/server.py                           |   8 +-
 python/tvm/{autotvm/tuner => runtime}/__init__.py  |  24 +-
 python/tvm/runtime/container.py                    |  56 +++
 python/tvm/{ => runtime}/module.py                 | 259 ++++++++----
 python/tvm/{_ffi => runtime}/ndarray.py            | 436 +++++++++++++++------
 python/tvm/{_ffi => runtime}/object.py             |  51 +--
 python/tvm/{_ffi => runtime}/object_generic.py     |  14 +-
 python/tvm/{_ffi => runtime}/packed_func.py        |  14 +-
 python/tvm/schedule.py                             |   5 +-
 python/tvm/stmt.py                                 |   3 +-
 python/tvm/target.py                               |   2 +-
 python/tvm/tensor.py                               |   4 +-
 python/tvm/tensor_intrin.py                        |   2 +-
 tests/python/contrib/test_sparse.py                |   2 +-
 tests/python/relay/test_ir_parser.py               |   2 +-
 tests/python/unittest/test_codegen_cuda.py         |   2 +-
 tests/python/unittest/test_codegen_llvm.py         |   6 +-
 tests/python/unittest/test_hybrid_script.py        |  16 +-
 tests/python/unittest/test_pass_verify_gpu_code.py |   2 +-
 .../python/unittest/test_schedule_schedule_ops.py  |   6 +-
 topi/tests/python/test_topi_sparse.py              |  34 +-
 45 files changed, 703 insertions(+), 737 deletions(-)
 delete mode 100644 python/tvm/_ffi/module.py
 delete mode 100644 python/tvm/ndarray.py
 copy python/tvm/{autotvm/tuner => runtime}/__init__.py (60%)
 create mode 100644 python/tvm/runtime/container.py
 rename python/tvm/{ => runtime}/module.py (78%)
 rename python/tvm/{_ffi => runtime}/ndarray.py (65%)
 rename python/tvm/{_ffi => runtime}/object.py (66%)
 rename python/tvm/{_ffi => runtime}/object_generic.py (94%)
 rename python/tvm/{_ffi => runtime}/packed_func.py (81%)

Reply via email to