[Refactor] move vm.py under runtime and adt to runtime.container.py (#4855)
authorZhi <5145158+zhiics@users.noreply.github.com>
Tue, 11 Feb 2020 20:04:04 +0000 (12:04 -0800)
committerGitHub <noreply@github.com>
Tue, 11 Feb 2020 20:04:04 +0000 (12:04 -0800)
commit502cf264d5b353d6852c49f3bae69121c487d1dd
tree265857a24e3fe5798ff8a1f544ea3b3733107d40
parent4fce5137ddd30ea56d1951703de43727043090b9
[Refactor] move vm.py under runtime and adt to runtime.container.py (#4855)
23 files changed:
python/tvm/container.py
python/tvm/relay/__init__.py
python/tvm/relay/backend/interpreter.py
python/tvm/relay/backend/vm.py
python/tvm/relay/testing/py_converter.py
python/tvm/runtime/container.py
python/tvm/runtime/profiler_vm.py [moved from python/tvm/relay/backend/profiler_vm.py with 92% similarity]
python/tvm/runtime/vm.py [new file with mode: 0644]
src/runtime/container.cc
src/runtime/vm/executable.cc
src/runtime/vm/profiler/vm.cc
src/runtime/vm/vm.cc
tests/python/frontend/tensorflow/test_forward.py
tests/python/relay/benchmarking/benchmark_vm.py
tests/python/relay/test_adt.py
tests/python/relay/test_backend_interpreter.py
tests/python/relay/test_external_codegen.py
tests/python/relay/test_pass_partition_graph.py
tests/python/relay/test_py_converter.py
tests/python/relay/test_vm.py
tests/python/relay/test_vm_serialization.py
tests/python/unittest/test_container.py
tests/python/unittest/test_runtime_vm_profiler.py