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
99c4f9d5
Unverified
Commit
99c4f9d5
authored
Apr 10, 2020
by
Samuel
Committed by
GitHub
Apr 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[TENSORFLOW]reduce ops updated (#5180)
parent
3d09e64d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
109 deletions
+59
-109
python/tvm/relay/frontend/tensorflow.py
+27
-18
tests/python/frontend/tensorflow/test_forward.py
+32
-91
No files found.
python/tvm/relay/frontend/tensorflow.py
View file @
99c4f9d5
...
@@ -1094,6 +1094,14 @@ def _reduce(op):
...
@@ -1094,6 +1094,14 @@ def _reduce(op):
ignores
=
[
'name'
,
'Tidx'
])([
inputs
[
0
]],
attr
)
ignores
=
[
'name'
,
'Tidx'
])([
inputs
[
0
]],
attr
)
return
_impl
return
_impl
def
_euclidean_norm
():
def
_impl
(
inputs
,
attr
,
params
,
mod
):
axis
=
tuple
(
_get_list_param
(
params
,
inputs
[
1
]))
keep_dims
=
bool
(
attr
.
get
(
'keep_dims'
,
False
))
return
_op
.
sqrt
(
_op
.
cast
(
_op
.
reduce
.
sum
(
_op
.
multiply
(
inputs
[
0
],
inputs
[
0
]),
axis
,
keep_dims
),
"float32"
))
return
_impl
def
_square
():
def
_square
():
def
_impl
(
inputs
,
attr
,
params
,
mod
):
def
_impl
(
inputs
,
attr
,
params
,
mod
):
return
_op
.
multiply
(
inputs
[
0
],
inputs
[
0
])
return
_op
.
multiply
(
inputs
[
0
],
inputs
[
0
])
...
@@ -1686,8 +1694,8 @@ _freezed_graph_pruned_op_list = ['ReadVariableOp', 'ResourceGather', 'Variable',
...
@@ -1686,8 +1694,8 @@ _freezed_graph_pruned_op_list = ['ReadVariableOp', 'ResourceGather', 'Variable',
_convert_map
=
{
_convert_map
=
{
'Abs'
:
AttrCvt
(
'abs'
),
'Abs'
:
AttrCvt
(
'abs'
),
'Add'
:
_elemwise
(
'add'
),
'Add'
:
_elemwise
(
'add'
),
'AddV2'
:
_elemwise
(
'add'
),
'AddN'
:
_add_n
(),
'AddN'
:
_add_n
(),
'AddV2'
:
_elemwise
(
'add'
),
'All'
:
_reduce
(
'all'
),
'All'
:
_reduce
(
'all'
),
'Any'
:
_reduce
(
'any'
),
'Any'
:
_reduce
(
'any'
),
'ArgMax'
:
_argx
(
_op
.
argmax
,
'argmax'
),
'ArgMax'
:
_argx
(
_op
.
argmax
,
'argmax'
),
...
@@ -1710,16 +1718,18 @@ _convert_map = {
...
@@ -1710,16 +1718,18 @@ _convert_map = {
'Concat'
:
_concat
(),
'Concat'
:
_concat
(),
'ConcatV2'
:
_concatV2
(),
'ConcatV2'
:
_concatV2
(),
'Conv2D'
:
_conv
(
'conv'
),
'Conv2D'
:
_conv
(
'conv'
),
'Conv3D'
:
_conv3d
(
'conv'
),
'Conv2DBackpropInput'
:
_conv
(
'conv_transpose'
),
'Conv2DBackpropInput'
:
_conv
(
'conv_transpose'
),
'Conv3D'
:
_conv3d
(
'conv'
),
'Cos'
:
AttrCvt
(
'cos'
),
'CropAndResize'
:
_crop_and_resize
(),
'CropAndResize'
:
_crop_and_resize
(),
'DecodeJpeg'
:
_decode_image
(),
'DecodeJpeg'
:
_decode_image
(),
'DepthwiseConv2dNative'
:
_conv
(
'depthwise'
),
'DepthToSpace'
:
_depth_to_space
(),
'DepthToSpace'
:
_depth_to_space
(),
'DepthwiseConv2dNative'
:
_conv
(
'depthwise'
),
'Dilation2D'
:
_dilation2d
(),
'Dilation2D'
:
_dilation2d
(),
'Equal'
:
_broadcast
(
'equal'
),
'Elu'
:
_elu
(),
'Elu'
:
_elu
(),
'Equal'
:
_broadcast
(
'equal'
),
'Erf'
:
AttrCvt
(
'erf'
),
'Erf'
:
AttrCvt
(
'erf'
),
'EuclideanNorm'
:
_euclidean_norm
(),
'Exp'
:
AttrCvt
(
'exp'
),
'Exp'
:
AttrCvt
(
'exp'
),
'ExpandDims'
:
_expand_dims
(),
'ExpandDims'
:
_expand_dims
(),
'Fill'
:
_fill
(),
'Fill'
:
_fill
(),
...
@@ -1743,19 +1753,16 @@ _convert_map = {
...
@@ -1743,19 +1753,16 @@ _convert_map = {
'LessEqual'
:
_broadcast
(
'less_equal'
),
'LessEqual'
:
_broadcast
(
'less_equal'
),
'Log'
:
AttrCvt
(
'log'
),
'Log'
:
AttrCvt
(
'log'
),
'Log1p'
:
_log1p
(),
'Log1p'
:
_log1p
(),
'Tan'
:
AttrCvt
(
'tan'
),
'Cos'
:
AttrCvt
(
'cos'
),
'Sin'
:
AttrCvt
(
'sin'
),
'LogicalAnd'
:
_logical
(
'logical_and'
),
'LogicalAnd'
:
_logical
(
'logical_and'
),
'LogicalOr'
:
_logical
(
'logical_or'
),
'LogicalNot'
:
_logical
(
'logical_not'
),
'LogicalNot'
:
_logical
(
'logical_not'
),
'LogicalOr'
:
_logical
(
'logical_or'
),
'LogSoftmax'
:
AttrCvt
(
'log_softmax'
),
'LogSoftmax'
:
AttrCvt
(
'log_softmax'
),
'LRN'
:
_lrn
(),
'LRN'
:
_lrn
(),
'MatMul'
:
_matmul
(),
'MatMul'
:
_matmul
(),
'Max'
:
_reduce
(
'max'
),
'Max'
:
_reduce
(
'max'
),
'Maximum'
:
_elemwise
(
'maximum'
),
'MaxPool'
:
_pooling
(
'max_pool'
),
'MaxPool'
:
_pooling
(
'max_pool'
),
'MaxPool3D'
:
_pool3d
(
'max_pool3d'
),
'MaxPool3D'
:
_pool3d
(
'max_pool3d'
),
'Maximum'
:
_elemwise
(
'maximum'
),
'Mean'
:
_mean
(),
'Mean'
:
_mean
(),
'Min'
:
_reduce
(
'min'
),
'Min'
:
_reduce
(
'min'
),
'Minimum'
:
_elemwise
(
'minimum'
),
'Minimum'
:
_elemwise
(
'minimum'
),
...
@@ -1767,14 +1774,6 @@ _convert_map = {
...
@@ -1767,14 +1774,6 @@ _convert_map = {
'NotEqual'
:
_broadcast
(
'not_equal'
),
'NotEqual'
:
_broadcast
(
'not_equal'
),
'OneHot'
:
_one_hot
(),
'OneHot'
:
_one_hot
(),
'Pack'
:
_pack
(),
'Pack'
:
_pack
(),
'TensorArrayV3'
:
_tensor_array
(),
'TensorArrayScatterV3'
:
_tensor_array_scatter
(),
'TensorArrayGatherV3'
:
_tensor_array_gather
(),
'TensorArraySizeV3'
:
_tensor_array_size
(),
'TensorArrayWriteV3'
:
_tensor_array_write
(),
'TensorArrayReadV3'
:
_tensor_array_read
(),
'TensorArraySplitV3'
:
_tensor_array_split
(),
'TensorArrayConcatV3'
:
_tensor_array_concat
(),
'Pad'
:
_pad
(
'Pad'
),
'Pad'
:
_pad
(
'Pad'
),
'PadV2'
:
_pad
(
'PadV2'
),
'PadV2'
:
_pad
(
'PadV2'
),
'Pow'
:
_elemwise
(
'power'
),
'Pow'
:
_elemwise
(
'power'
),
...
@@ -1785,8 +1784,8 @@ _convert_map = {
...
@@ -1785,8 +1784,8 @@ _convert_map = {
'Relu'
:
AttrCvt
(
'relu'
),
'Relu'
:
AttrCvt
(
'relu'
),
'Relu6'
:
_relu6
(),
'Relu6'
:
_relu6
(),
'Reshape'
:
_reshape
(),
'Reshape'
:
_reshape
(),
'ResizeBilinear'
:
_resize
(
'bilinear'
),
'ResizeBicubic'
:
_resize
(
'bilinear'
),
'ResizeBicubic'
:
_resize
(
'bilinear'
),
'ResizeBilinear'
:
_resize
(
'bilinear'
),
'ResizeNearestNeighbor'
:
_resize
(
'nearest_neighbor'
),
'ResizeNearestNeighbor'
:
_resize
(
'nearest_neighbor'
),
'ReverseV2'
:
_reverse_v2
(),
'ReverseV2'
:
_reverse_v2
(),
'RightShift'
:
AttrCvt
(
'right_shift'
),
'RightShift'
:
AttrCvt
(
'right_shift'
),
...
@@ -1797,6 +1796,7 @@ _convert_map = {
...
@@ -1797,6 +1796,7 @@ _convert_map = {
'Shape'
:
_shape
(),
'Shape'
:
_shape
(),
'Sigmoid'
:
AttrCvt
(
'sigmoid'
),
'Sigmoid'
:
AttrCvt
(
'sigmoid'
),
'Sign'
:
AttrCvt
(
'sign'
),
'Sign'
:
AttrCvt
(
'sign'
),
'Sin'
:
AttrCvt
(
'sin'
),
'Size'
:
_size
(),
'Size'
:
_size
(),
'Slice'
:
_slice
(),
'Slice'
:
_slice
(),
'Softmax'
:
_softmax
(),
'Softmax'
:
_softmax
(),
...
@@ -1813,7 +1813,16 @@ _convert_map = {
...
@@ -1813,7 +1813,16 @@ _convert_map = {
'StridedSlice'
:
_stridedSlice
(),
'StridedSlice'
:
_stridedSlice
(),
'Sub'
:
_elemwise
(
'subtract'
),
'Sub'
:
_elemwise
(
'subtract'
),
'Sum'
:
_sum
(),
'Sum'
:
_sum
(),
'Tan'
:
AttrCvt
(
'tan'
),
'Tanh'
:
AttrCvt
(
'tanh'
),
'Tanh'
:
AttrCvt
(
'tanh'
),
'TensorArrayConcatV3'
:
_tensor_array_concat
(),
'TensorArrayGatherV3'
:
_tensor_array_gather
(),
'TensorArrayReadV3'
:
_tensor_array_read
(),
'TensorArrayScatterV3'
:
_tensor_array_scatter
(),
'TensorArraySizeV3'
:
_tensor_array_size
(),
'TensorArraySplitV3'
:
_tensor_array_split
(),
'TensorArrayV3'
:
_tensor_array
(),
'TensorArrayWriteV3'
:
_tensor_array_write
(),
'Tile'
:
_tile
(),
'Tile'
:
_tile
(),
'TopKV2'
:
_topk
(),
'TopKV2'
:
_topk
(),
'Transpose'
:
_transpose
(),
'Transpose'
:
_transpose
(),
...
...
tests/python/frontend/tensorflow/test_forward.py
View file @
99c4f9d5
...
@@ -1029,28 +1029,6 @@ def test_forward_argminmax():
...
@@ -1029,28 +1029,6 @@ def test_forward_argminmax():
_test_argx
(
tf
.
argmax
,
data
=
data
,
axis
=
axis
)
_test_argx
(
tf
.
argmax
,
data
=
data
,
axis
=
axis
)
_test_argx
(
tf
.
argmin
,
data
=
data
,
axis
=
axis
)
_test_argx
(
tf
.
argmin
,
data
=
data
,
axis
=
axis
)
#######################################################################
# Reduce
# ------
def
_test_reduce
(
func
,
data
,
**
kwargs
):
""" One iteration of a reduce operation"""
with
tf
.
Graph
()
.
as_default
():
inp
=
array_ops
.
placeholder
(
shape
=
data
.
shape
,
dtype
=
data
.
dtype
,
name
=
"c0"
)
func
(
inp
,
name
=
"reducex0"
,
**
kwargs
)
compare_tf_with_tvm
(
data
,
'c0:0'
,
'reducex0:0'
)
def
test_forward_reduce
():
data
=
np
.
random
.
uniform
(
size
=
(
8
,
4
,
9
))
.
astype
(
'float32'
)
_test_reduce
(
tf
.
reduce_sum
,
data
=
data
)
_test_reduce
(
tf
.
reduce_sum
,
data
=
data
,
axis
=
0
)
_test_reduce
(
tf
.
reduce_sum
,
data
=
data
,
axis
=
(
0
,
1
))
#######################################################################
#######################################################################
# Variable
# Variable
...
@@ -2845,55 +2823,42 @@ def test_forward_size():
...
@@ -2845,55 +2823,42 @@ def test_forward_size():
check_size
((
10
,))
check_size
((
10
,))
#######################################################################
#######################################################################
# All, Any, Max, Min
# All, Any, Max, Min, Prod, variance, std, logsumexp, euclidean_norm
# ------------------
# ------------------------------------------------------------------
def
test_forward_reduce_all
():
"""Test the All operator."""
np_data
=
np
.
random
.
choice
([
True
,
False
],
size
=
(
5
,
7
,
11
))
tf
.
reset_default_graph
()
with
tf
.
Graph
()
.
as_default
():
in_data
=
tf
.
placeholder
(
tf
.
bool
,
(
5
,
7
,
11
),
name
=
"in_data"
)
tf
.
reduce_all
(
in_data
,
name
=
"all"
)
compare_tf_with_tvm
([
np_data
],
[
'in_data:0'
],
'all:0'
)
def
test_forward_reduce_any
():
"""Test the Any operator."""
np_data
=
np
.
random
.
choice
([
True
,
False
],
size
=
(
5
,
7
,
11
))
tf
.
reset_default_graph
()
with
tf
.
Graph
()
.
as_default
():
in_data
=
tf
.
placeholder
(
tf
.
bool
,
(
5
,
7
,
11
),
name
=
"in_data"
)
tf
.
reduce_any
(
in_data
,
name
=
"any"
)
compare_tf_with_tvm
([
np_data
],
[
'in_data:0'
],
'any:0'
)
def
test_forward_reduce_max
():
def
test_forward_reduce
():
def
check_max
(
ishape
,
axis
,
keepdims
,
dtype
):
def
_check_op
(
tf_op
,
ishape
,
axis
,
keepdims
,
dtype
=
"float32"
):
tf
.
reset_default_graph
()
np_data
=
np
.
random
.
uniform
(
size
=
ishape
)
.
astype
(
dtype
)
with
tf
.
Graph
()
.
as_default
():
in_data
=
tf
.
placeholder
(
dtype
,
name
=
"in_data"
)
tf
.
math
.
reduce_max
(
in_data
,
axis
=
axis
,
keepdims
=
keepdims
,
name
=
"reduce_max"
)
compare_tf_with_tvm
([
np_data
],
[
'in_data:0'
],
'reduce_max:0'
)
check_max
((
10
,
8
,
16
,
32
),
axis
=
(
-
1
),
keepdims
=
True
,
dtype
=
"int32"
)
check_max
((
10
,
8
,
16
,
32
),
axis
=
(
2
,
3
),
keepdims
=
True
,
dtype
=
"float32"
)
check_max
((
10
,
8
,
16
,
32
),
axis
=
(
1
,
2
),
keepdims
=
True
,
dtype
=
'float32'
)
def
test_forward_reduce_min
():
def
check_min
(
ishape
,
axis
,
keepdims
,
dtype
):
tf
.
reset_default_graph
()
tf
.
reset_default_graph
()
np_data
=
np
.
random
.
uniform
(
size
=
ishape
)
.
astype
(
dtype
)
if
dtype
==
"bool"
:
np_data
=
np
.
random
.
choice
([
True
,
False
],
size
=
ishape
)
else
:
np_data
=
np
.
random
.
uniform
(
size
=
ishape
)
.
astype
(
dtype
)
if
tf_op
==
tf
.
math
.
reduce_prod
:
axis
=
1
np_data
=
np_data
.
reshape
(
1
,
-
1
)
with
tf
.
Graph
()
.
as_default
():
with
tf
.
Graph
()
.
as_default
():
in_data
=
tf
.
placeholder
(
dtype
,
name
=
"in_data"
)
in_data
=
tf
.
placeholder
(
dtype
,
name
=
"in_data"
)
tf
.
math
.
reduce_min
(
in_data
,
axis
=
axis
,
reduce_op
=
tf_op
(
in_data
,
axis
=
axis
,
keepdims
=
keepdims
,
name
=
"reduce_max"
)
keepdims
=
keepdims
,
name
=
"reduce_std"
)
compare_tf_with_tvm
([
np_data
],
[
'in_data:0'
],
'reduce_max:0'
)
compare_tf_with_tvm
([
np_data
],
[
'in_data:0'
],
reduce_op
.
name
)
check_min
((
10
,
8
,
16
,
32
),
axis
=
(
-
1
),
keepdims
=
True
,
dtype
=
"int32"
)
def
_test_math_op
(
op
,
dtypes
=
[
"int32"
,
"float32"
]):
check_min
((
10
,
8
,
16
,
32
),
axis
=
(
2
,
3
),
keepdims
=
True
,
dtype
=
"float32"
)
for
dtype
in
dtypes
:
check_min
((
10
,
8
,
16
,
32
),
axis
=
(
1
,
2
),
keepdims
=
True
,
dtype
=
'float32'
)
_check_op
(
op
,
(
3
,
10
),
axis
=
(
-
1
),
keepdims
=
False
,
dtype
=
dtype
)
_check_op
(
op
,
(
8
,
16
,
32
),
axis
=
(
-
1
),
keepdims
=
False
,
dtype
=
dtype
)
_check_op
(
op
,
(
1
,
8
,
8
,
3
),
axis
=
(
2
,
3
),
keepdims
=
True
,
dtype
=
dtype
)
_check_op
(
op
,
(
2
,
3
,
10
,
10
),
axis
=
(
1
,
2
),
keepdims
=
True
,
dtype
=
dtype
)
_test_math_op
(
tf
.
math
.
reduce_all
,
dtypes
=
[
"bool"
])
_test_math_op
(
tf
.
math
.
reduce_any
,
dtypes
=
[
"bool"
])
_test_math_op
(
tf
.
math
.
reduce_max
)
_test_math_op
(
tf
.
math
.
reduce_min
)
_test_math_op
(
tf
.
math
.
reduce_prod
)
_test_math_op
(
tf
.
math
.
reduce_variance
)
_test_math_op
(
tf
.
math
.
reduce_std
,
dtypes
=
[
"float32"
])
_test_math_op
(
tf
.
math
.
reduce_logsumexp
,
dtypes
=
[
"float32"
])
if
package_version
.
parse
(
tf
.
VERSION
)
>=
package_version
.
parse
(
'1.15.0'
):
_test_math_op
(
tf
.
math
.
reduce_euclidean_norm
)
#######################################################################
#######################################################################
# Relational operators
# Relational operators
...
@@ -2943,26 +2908,6 @@ def test_forward_expand_dims():
...
@@ -2943,26 +2908,6 @@ def test_forward_expand_dims():
#######################################################################
#######################################################################
# Prod
# ----
def
_test_forward_reduce_prod
(
shape
,
axis
,
keepdims
):
inp_array1
=
np
.
random
.
uniform
(
-
5
,
5
,
size
=
shape
)
.
astype
(
np
.
float32
)
with
tf
.
Graph
()
.
as_default
():
in1
=
tf
.
placeholder
(
shape
=
inp_array1
.
shape
,
dtype
=
inp_array1
.
dtype
)
out
=
tf
.
math
.
reduce_prod
(
in1
,
axis
,
keepdims
)
compare_tf_with_tvm
(
inp_array1
,
in1
.
name
,
out
.
name
)
def
test_forward_reduce_prod
():
_test_forward_reduce_prod
((
5
,),
0
,
False
)
_test_forward_reduce_prod
((
5
,
5
),
0
,
False
)
_test_forward_reduce_prod
((
5
,
5
),
1
,
False
)
_test_forward_reduce_prod
((
5
,),
0
,
True
)
_test_forward_reduce_prod
((
5
,
5
),
0
,
True
)
_test_forward_reduce_prod
((
5
,
5
),
1
,
True
)
#######################################################################
# Maximum, Minimum
# Maximum, Minimum
# ----------------
# ----------------
def
test_forward_maximum
():
def
test_forward_maximum
():
...
@@ -3295,10 +3240,6 @@ if __name__ == '__main__':
...
@@ -3295,10 +3240,6 @@ if __name__ == '__main__':
test_forward_argminmax
()
test_forward_argminmax
()
test_forward_reduce
()
test_forward_reduce
()
test_forward_mean
()
test_forward_mean
()
test_forward_reduce_prod
()
test_forward_reduce_all
()
test_forward_reduce_any
()
test_forward_reduce_min
()
# General
# General
test_forward_multi_input
()
test_forward_multi_input
()
...
...
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