Skip to content

Commit

Permalink
Fix some typo errors in license header (apache#5956)
Browse files Browse the repository at this point in the history
Signed-off-by: leonwanghui <wanghui71leon@gmail.com>
  • Loading branch information
leonwanghui authored and zhiics committed Jul 2, 2020
1 parent 5869d7c commit a3bfb53
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion python/tvm/relay/backend/vm.py
@@ -1,4 +1,4 @@
# License .to the Apache Software Foundation (ASF) under one
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
Expand Down Expand Up @@ -73,6 +73,7 @@ def compile(mod, target=None, target_host=None, params=None):

class VMCompiler(object):
"""Compiler that compiles Relay module to VM executable."""

def __init__(self):
self.mod = _vm._VMCompiler()
self._lower = self.mod["lower"]
Expand Down Expand Up @@ -239,6 +240,7 @@ class VMExecutor(Executor):
target : :py:class:`Target`
The target option to build the function.
"""

def __init__(self, mod, ctx, target):
if mod is None:
raise RuntimeError("Must provide module to get VM executor.")
Expand Down
5 changes: 4 additions & 1 deletion python/tvm/runtime/profiler_vm.py
@@ -1,4 +1,4 @@
# License .to the Apache Software Foundation (ASF) under one
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
Expand All @@ -23,12 +23,15 @@
from tvm.runtime import _ffi_api
from . import vm


def enabled():
"""Whether vm profiler is enabled."""
return hasattr(_ffi_api, "_VirtualMachineDebug")


class VirtualMachineProfiler(vm.VirtualMachine):
"""Relay profile VM runtime."""

def __init__(self, mod):
super(VirtualMachineProfiler, self).__init__(mod)
m = mod.module if isinstance(mod, vm.Executable) else mod
Expand Down
5 changes: 4 additions & 1 deletion python/tvm/runtime/vm.py
@@ -1,4 +1,4 @@
# License .to the Apache Software Foundation (ASF) under one
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
Expand Down Expand Up @@ -28,6 +28,7 @@
from .object import Object
from . import _ffi_api, container


def _convert(arg, cargs):
if isinstance(arg, Object):
cargs.append(arg)
Expand Down Expand Up @@ -59,6 +60,7 @@ def convert(args):

class Executable(object):
"""Relay VM executable"""

def __init__(self, mod):
self.mod = mod
self._function_params = {}
Expand Down Expand Up @@ -272,6 +274,7 @@ def get_function_params(self, func_name):

class VirtualMachine(object):
"""Relay VM runtime."""

def __init__(self, mod):
if not isinstance(mod, (Executable, tvm.runtime.Module)):
raise TypeError("mod is expected to be the type of Executable or " +
Expand Down

0 comments on commit a3bfb53

Please sign in to comment.