-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use latest error handling conventions
- Loading branch information
1 parent
e2ecae4
commit b2e25a3
Showing
18 changed files
with
340 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,12 @@ | ||
"""NNVM frontends.""" | ||
from __future__ import absolute_import | ||
from tvm.error import OpError, OpNotImplemented, OpAttributeRequired, \ | ||
OpAttributeInvalid, OpAttributeUnimplemented | ||
from .mxnet import from_mxnet | ||
from .onnx import from_onnx | ||
from .coreml import from_coreml | ||
from .keras import from_keras | ||
from .darknet import from_darknet | ||
from .tensorflow import from_tensorflow | ||
from .caffe2 import from_caffe2 | ||
from .common import raise_not_supported, get_nnvm_op, required_attr, \ | ||
warn_not_used, parse_tshape, parse_bool_str | ||
from tvm.error_handling import raise_attribute_required, \ | ||
raise_attribute_invalid, \ | ||
raise_operator_unimplemented, \ | ||
raise_attribute_unimplemented, \ | ||
warn_not_used | ||
from .common import get_nnvm_op, required_attr, parse_tshape, parse_bool_str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.