Skip to content

Commit

Permalink
removing nnvm dep from VTA sources (#4419)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoreau89 authored and tqchen committed Nov 26, 2019
1 parent a44ac18 commit aab65ad
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 1,040 deletions.
10 changes: 4 additions & 6 deletions vta/python/vta/__init__.py
Expand Up @@ -15,11 +15,10 @@
# specific language governing permissions and limitations
# under the License.

"""VTA Package is a TVM backend extension to support VTA hardwares
"""VTA Package is a TVM backend extension to support VTA hardware.
Besides the compiler toolchain.
It also include utility functions to
configure the hardware Environment and access remote through RPC
Besides the compiler toolchain, it also includes utility functions to
configure the hardware environment and access remote device through RPC.
"""
from __future__ import absolute_import as _abs

Expand All @@ -31,9 +30,8 @@

__version__ = "0.1.0"

# do not import nnvm/topi when running vta.exec.rpc_server
# do not import topi when running vta.exec.rpc_server
# to maintain minimum dependency on the board
if sys.argv[0] not in ("-c", "-m"):
from . import top
from .build_module import build_config, lower, build
from . import graph
333 changes: 0 additions & 333 deletions vta/python/vta/graph.py

This file was deleted.

5 changes: 0 additions & 5 deletions vta/python/vta/top/__init__.py
Expand Up @@ -24,8 +24,3 @@
from . import vta_conv2d_transpose
from . import vta_dense
from . import util

# NNVM is deprecated for VTA
# from . import nnvm_bitpack
# from .nnvm_graphpack import nnvm_graph_pack
# from . import nnvm_op

0 comments on commit aab65ad

Please sign in to comment.