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/01/16 03:44:50 UTC

[incubator-tvm] branch master updated (49d3144 -> 0ec27f4)

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 49d3144  [REFACTOR] Move support related code to include/tvm/support (#4716)
     add 0ec27f4  [REFACTOR][FFI] Make more clear naming for C API Type codes. (#4715)

No new revisions were added by this update.

Summary of changes:
 apps/extension/src/tvm_ext.cc                      |   2 +-
 golang/src/ndarray.go                              |  18 +-
 golang/src/value.go                                |  52 ++---
 include/tvm/expr_operator.h                        |   2 +-
 include/tvm/ir/attrs.h                             |   8 +-
 include/tvm/packed_func_ext.h                      |   8 +-
 include/tvm/runtime/c_runtime_api.h                |  58 ++---
 include/tvm/runtime/data_type.h                    |   2 +-
 include/tvm/runtime/device_api.h                   |   6 +-
 include/tvm/runtime/packed_func.h                  | 250 ++++++++++-----------
 include/tvm/runtime/util.h                         |   4 +-
 jvm/native/src/main/native/jni_helper_func.h       |  20 +-
 .../src/main/native/org_apache_tvm_native_c_api.cc |  14 +-
 python/tvm/_ffi/_ctypes/function.py                |  20 +-
 python/tvm/_ffi/_cython/base.pxi                   |  22 +-
 python/tvm/_ffi/_cython/function.pxi               |  52 ++---
 python/tvm/_ffi/_cython/object.pxi                 |   2 +-
 python/tvm/_ffi/runtime_ctypes.py                  |   6 +-
 rust/runtime/src/graph.rs                          |   2 +-
 src/api/api_base.cc                                |   4 +-
 src/api/api_lang.cc                                |  22 +-
 src/codegen/codegen_c.cc                           |   2 +-
 src/codegen/codegen_c_host.cc                      |   4 +-
 src/codegen/datatype/registry.cc                   |  15 +-
 src/codegen/datatype/registry.h                    |   2 +-
 src/codegen/llvm/codegen_cpu.cc                    |   2 +-
 src/codegen/stackvm/codegen_stackvm.cc             |   4 +-
 src/ir/attrs.cc                                    |   2 +-
 src/ir/op.cc                                       |   6 +-
 src/node/reflection.cc                             |   6 +-
 src/node/serialization.cc                          |   4 +-
 src/pass/lower_tvm_builtin.cc                      |   4 +-
 src/pass/make_api.cc                               |   8 +-
 src/relay/ir/doc.cc                                |   2 +-
 src/relay/ir/pretty_printer.cc                     |   2 +-
 src/relay/op/tensor/transform.cc                   |   2 +-
 src/runtime/c_runtime_api.cc                       |  18 +-
 src/runtime/contrib/cudnn/conv_forward.cc          |  10 +-
 .../example_ext_runtime/example_ext_runtime.cc     |   8 +-
 src/runtime/contrib/nnpack/convolution.cc          |  12 +-
 src/runtime/contrib/sort/sort.cc                   |  12 +-
 src/runtime/cpu_device_api.cc                      |   8 +-
 src/runtime/cuda/cuda_device_api.cc                |  10 +-
 src/runtime/file_util.cc                           |   8 +-
 src/runtime/graph/debug/graph_runtime_debug.cc     |   2 +-
 src/runtime/graph/graph_runtime.cc                 |  12 +-
 src/runtime/library_module.cc                      |   4 +-
 src/runtime/meta_data.h                            |   6 +-
 src/runtime/metal/metal_common.h                   |  10 +-
 src/runtime/metal/metal_device_api.mm              |   8 +-
 src/runtime/micro/micro_device_api.cc              |   6 +-
 src/runtime/micro/micro_session.cc                 |  10 +-
 src/runtime/micro/micro_session.h                  |   8 +-
 src/runtime/micro/standalone/utvm_graph_runtime.cc |   4 +-
 src/runtime/opencl/opencl_common.h                 |   6 +-
 src/runtime/opencl/opencl_device_api.cc            |  10 +-
 src/runtime/opencl/opencl_module.cc                |   4 +-
 src/runtime/opengl/opengl_common.h                 |  12 +-
 src/runtime/opengl/opengl_device_api.cc            |  14 +-
 src/runtime/opengl/opengl_module.cc                |   8 +-
 src/runtime/pack_args.h                            |  28 +--
 src/runtime/rocm/rocm_device_api.cc                |   6 +-
 src/runtime/rpc/rpc_device_api.cc                  |   8 +-
 src/runtime/rpc/rpc_module.cc                      |   8 +-
 src/runtime/rpc/rpc_session.cc                     | 111 ++++-----
 src/runtime/rpc/rpc_session.h                      |   4 +-
 src/runtime/sgx/trusted/runtime.cc                 |  10 +-
 src/runtime/sgx/untrusted/sgx_module.cc            |   8 +-
 src/runtime/stackvm/stackvm.cc                     |   4 +-
 src/runtime/stackvm/stackvm.h                      |  12 +-
 src/runtime/vm/memory_manager.h                    |   2 +-
 src/runtime/vm/naive_allocator.h                   |   2 +-
 src/runtime/vm/pooled_allocator.h                  |   2 +-
 src/runtime/vm/vm.cc                               |   8 +-
 src/runtime/vulkan/vulkan.cc                       |  13 +-
 src/runtime/workspace_pool.cc                      |   6 +-
 tests/cpp/packed_func_test.cc                      |  26 +--
 tests/python/unittest/test_runtime_extension.py    |   2 +-
 topi/src/topi.cc                                   |   2 +-
 vta/src/device_api.cc                              |   8 +-
 web/tvm_runtime.js                                 |  48 ++--
 81 files changed, 580 insertions(+), 587 deletions(-)