Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
73dc5ac3
Commit
73dc5ac3
authored
Sep 01, 2019
by
Neo Chien
Committed by
Jared Roesch
Aug 31, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add not operator for the frontend/onnx.py (#3836)
parent
9d880bd3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
1 deletions
+40
-1
python/tvm/relay/frontend/onnx.py
+11
-1
tests/python/frontend/onnx/test_forward.py
+29
-0
No files found.
python/tvm/relay/frontend/onnx.py
View file @
73dc5ac3
...
...
@@ -868,6 +868,15 @@ class Equal(Elemwise):
"""
name
=
'equal'
class
Not
(
Elemwise
):
""" Operator converter for Not.
"""
@classmethod
def
_impl_v1
(
cls
,
inputs
,
attr
,
params
):
return
_op
.
logical_not
(
inputs
[
0
])
# compatible operators that do NOT require any conversion.
_identity_list
=
[]
...
...
@@ -983,7 +992,8 @@ def _get_convert_map(opset):
'Pad'
:
Pad
.
get_converter
(
opset
),
'Shape'
:
Shape
.
get_converter
(
opset
),
'Sign'
:
Sign
.
get_converter
(
opset
),
'Equal'
:
Equal
.
get_converter
(
opset
)
'Equal'
:
Equal
.
get_converter
(
opset
),
'Not'
:
Not
.
get_converter
(
opset
)
}
...
...
tests/python/frontend/onnx/test_forward.py
View file @
73dc5ac3
...
...
@@ -1130,6 +1130,34 @@ def test_sign():
'Sign'
,
{})
def
verify_not
(
indata
,
dtype
):
x
=
indata
.
astype
(
dtype
)
outdata
=
np
.
logical_not
(
x
)
node
=
helper
.
make_node
(
'Not'
,
inputs
=
[
'in'
],
outputs
=
[
'out'
],)
graph
=
helper
.
make_graph
([
node
],
'not_test'
,
inputs
=
[
helper
.
make_tensor_value_info
(
"in"
,
TensorProto
.
BOOL
,
list
(
x
.
shape
))],
outputs
=
[
helper
.
make_tensor_value_info
(
"out"
,
TensorProto
.
BOOL
,
list
(
outdata
.
shape
))])
model
=
helper
.
make_model
(
graph
,
producer_name
=
'not_test'
)
for
target
,
ctx
in
ctx_list
():
tvm_out
=
get_tvm_output
(
model
,
[
x
],
target
,
ctx
,
outdata
.
shape
)
tvm
.
testing
.
assert_allclose
(
outdata
,
tvm_out
)
def
test_not
():
# 2d
verify_not
(
indata
=
(
np
.
random
.
randn
(
3
,
4
)
>
0
),
dtype
=
bool
)
# 3d
verify_not
(
indata
=
(
np
.
random
.
randn
(
3
,
4
,
5
)
>
0
),
dtype
=
bool
)
# 4d
verify_not
(
indata
=
(
np
.
random
.
randn
(
3
,
4
,
5
,
6
)
>
0
),
dtype
=
bool
)
if
__name__
==
'__main__'
:
test_flatten
()
test_reshape
()
...
...
@@ -1173,3 +1201,4 @@ if __name__ == '__main__':
test_inception
()
test_densenet
()
test_sign
()
test_not
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment