Skip to content

Commit

Permalink
missed one
Browse files Browse the repository at this point in the history
  • Loading branch information
areusch committed Mar 19, 2021
1 parent e31b959 commit b0ff20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tvm/contrib/debugger/debug_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

import warnings

from . import graph_executor
from . import debug_executor


def create(*args, **kwargs):
warnings.warn(
"This function has been moved to tvm.contrib.graph_executor and will be removed "
"in the next TVM release"
)
return graph_executor.create(*args, **kwargs)
return debug_executor.create(*args, **kwargs)

0 comments on commit b0ff20a

Please sign in to comment.