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
28acb184
Commit
28acb184
authored
Jul 04, 2018
by
Tatsuya Nishiyama
Committed by
Tianqi Chen
Jul 03, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NNVM] Move FTVMCompute registration of cast, greter, less to C++. (#1370)
parent
2f4db1b3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
13 deletions
+22
-13
nnvm/python/nnvm/top/tensor.py
+0
-13
nnvm/src/top/tensor/elemwise.cc
+12
-0
nnvm/src/top/tensor/transform.cc
+10
-0
No files found.
nnvm/python/nnvm/top/tensor.py
View file @
28acb184
...
...
@@ -53,11 +53,6 @@ reg.register_pattern("copy", OpPattern.ELEMWISE)
reg
.
register_schedule
(
"copy"
,
_fschedule_broadcast
)
# cast
@reg.register_compute
(
"cast"
)
def
compute_cast
(
attrs
,
inputs
,
_
):
"""Compute definition of cast"""
dtype
=
attrs
.
get_string
(
"dtype"
)
return
topi
.
cast
(
inputs
[
0
],
dtype
)
reg
.
register_pattern
(
"cast"
,
OpPattern
.
ELEMWISE
)
reg
.
register_schedule
(
"cast"
,
_fschedule_broadcast
)
...
...
@@ -210,18 +205,10 @@ reg.register_pattern("ones_like", OpPattern.ELEMWISE)
reg
.
register_schedule
(
"ones_like"
,
_fschedule_elemwise
)
# greater
@reg.register_compute
(
"greater"
)
def
compute_greater
(
_
,
inputs
,
out_info
):
"""Compute definition of greater"""
return
topi
.
greater
(
inputs
[
0
],
inputs
[
1
])
.
astype
(
'float32'
)
reg
.
register_pattern
(
"greater"
,
OpPattern
.
ELEMWISE
)
reg
.
register_schedule
(
"greater"
,
_fschedule_elemwise
)
# less
@reg.register_compute
(
"less"
)
def
compute_less
(
_
,
inputs
,
out_info
):
"""Compute definition of less"""
return
topi
.
less
(
inputs
[
0
],
inputs
[
1
])
.
astype
(
'float32'
)
reg
.
register_pattern
(
"less"
,
OpPattern
.
ELEMWISE
)
reg
.
register_schedule
(
"less"
,
_fschedule_elemwise
)
...
...
nnvm/src/top/tensor/elemwise.cc
View file @
28acb184
...
...
@@ -781,6 +781,12 @@ with 1.0 if (left > right), otherwise 0.0 element-wise.
.
add_argument
(
"rhs"
,
"Tensor"
,
"Second input"
)
.
set_num_inputs
(
2
)
.
set_attr
<
nnvm
::
FInferShape
>
(
"FInferShape"
,
ElemwiseShape
<
2
,
1
>
)
.
set_attr
<
FTVMCompute
>
(
"FTVMCompute"
,
[](
const
NodeAttrs
&
attrs
,
const
Array
<
Tensor
>&
inputs
,
const
Array
<
Tensor
>&
out_info
)
{
return
Array
<
Tensor
>
{
topi
::
cast
(
topi
::
greater
(
inputs
[
0
],
inputs
[
1
]),
out_info
[
0
]
->
dtype
)
};
})
.
set_support_level
(
4
);
...
...
@@ -793,6 +799,12 @@ with 1.0 if (left < right), otherwise 0.0 element-wise.
.
add_argument
(
"rhs"
,
"Tensor"
,
"Second input"
)
.
set_num_inputs
(
2
)
.
set_attr
<
nnvm
::
FInferShape
>
(
"FInferShape"
,
ElemwiseShape
<
2
,
1
>
)
.
set_attr
<
FTVMCompute
>
(
"FTVMCompute"
,
[](
const
NodeAttrs
&
attrs
,
const
Array
<
Tensor
>&
inputs
,
const
Array
<
Tensor
>&
out_info
)
{
return
Array
<
Tensor
>
{
topi
::
cast
(
topi
::
less
(
inputs
[
0
],
inputs
[
1
]),
out_info
[
0
]
->
dtype
)
};
})
.
set_support_level
(
4
);
NNVM_REGISTER_INDICATOR_OP
(
_max_mask
)
...
...
nnvm/src/top/tensor/transform.cc
View file @
28acb184
...
...
@@ -15,7 +15,9 @@
#include "../elemwise_op_common.h"
#include "topi/nn/flatten.h"
#include "topi/transform.h"
#include "topi/elemwise.h"
#include "topi/detail/constant_utils.h"
#include "../../compiler/compile_engine.h"
namespace
nnvm
{
namespace
top
{
...
...
@@ -413,6 +415,14 @@ NNVM_REGISTER_OP(cast)
.
set_attr
<
FCorrectLayout
>
(
"FCorrectLayout"
,
ElemwiseArbitraryLayout
<
1
,
1
>
)
.
set_num_inputs
(
1
)
.
set_num_outputs
(
1
)
.
set_attr
<
FTVMCompute
>
(
"FTVMCompute"
,
[](
const
NodeAttrs
&
attrs
,
const
Array
<
Tensor
>&
inputs
,
const
Array
<
Tensor
>&
out_info
)
{
const
CastParam
&
param
=
nnvm
::
get
<
CastParam
>
(
attrs
.
parsed
);
Type
dtype
=
GetTVMType
(
param
.
dtype
);
return
Array
<
Tensor
>
{
topi
::
cast
(
inputs
[
0
],
dtype
)
};
})
.
set_support_level
(
1
);
...
...
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