[REFACTOR] Move support related code to include/tvm/support (#4716)
authorTianqi Chen <tqchen@users.noreply.github.com>
Wed, 15 Jan 2020 22:44:14 +0000 (14:44 -0800)
committerGitHub <noreply@github.com>
Wed, 15 Jan 2020 22:44:14 +0000 (14:44 -0800)
commit49d31443c4b65c814a3da6decc363a881c05b372
treec8eaf2bb14f26c87f175ea182f5b618ef5dd9412
parentb0b51f25301046860720f54a6dd4239868143439
[REFACTOR] Move support related code to include/tvm/support (#4716)

* [REFACTOR] Move support related code to include/tvm/support

- tvm/logging.h -> tvm/support/logging.h
- remove tvm/base.h, move with into tvm/support/with.h

* src/common -> src/support
53 files changed:
apps/cpp_rpc/rpc_env.cc
apps/cpp_rpc/rpc_server.cc
apps/cpp_rpc/rpc_tracker_client.h
include/tvm/arithmetic.h
include/tvm/buffer.h
include/tvm/codegen.h
include/tvm/data_layout.h
include/tvm/expr.h
include/tvm/ir.h
include/tvm/ir/op.h
include/tvm/ir/transform.h
include/tvm/lowered_func.h
include/tvm/packed_func_ext.h
include/tvm/schedule.h
include/tvm/schedule_pass.h
include/tvm/support/logging.h [moved from include/tvm/logging.h with 97% similarity]
include/tvm/support/with.h [moved from include/tvm/base.h with 80% similarity]
include/tvm/target_info.h
include/tvm/tensor.h
src/README.md
src/codegen/codegen_cuda.cc
src/codegen/llvm/llvm_common.cc
src/codegen/opt/build_cuda_on.cc
src/lang/expr.cc
src/lang/expr_operator.cc
src/lang/ir.cc
src/node/serialization.cc
src/relay/backend/graph_plan_memory.cc
src/relay/backend/vm/compiler.cc
src/relay/backend/vm/compiler.h
src/relay/backend/vm/inline_primitives.cc
src/relay/backend/vm/lambda_lift.cc
src/relay/backend/vm/removed_unused_funcs.cc
src/relay/ir/pretty_printer.cc
src/relay/pass/dependency_graph.cc
src/relay/pass/dependency_graph.h
src/relay/pass/fuse_ops.cc
src/relay/pass/to_a_normal_form.cc
src/relay/pass/type_solver.h
src/runtime/micro/openocd_low_level_device.cc
src/runtime/micro/tcl_socket.cc
src/runtime/micro/tcl_socket.h
src/runtime/rpc/rpc_session.cc
src/runtime/rpc/rpc_session.h
src/runtime/rpc/rpc_socket_impl.cc
src/runtime/vm/object.cc
src/runtime/vm/vm.cc
src/support/arena.h [moved from src/common/arena.h with 97% similarity]
src/support/base64.h [moved from src/common/base64.h with 98% similarity]
src/support/pipe.h [moved from src/common/pipe.h with 95% similarity]
src/support/ring_buffer.h [moved from src/common/ring_buffer.h with 97% similarity]
src/support/socket.h [moved from src/common/socket.h with 99% similarity]
src/support/util.h [moved from src/common/util.h with 96% similarity]