Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tvm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cld
ml
tvm
Commits
b20678b0
Commit
b20678b0
authored
7 years ago
by
ziheng
Committed by
Tianqi Chen
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[TOPI] Fix declaration for different dtypes (#546)
parent
b384cd4a
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
python/tvm/expr.py
+3
-1
3 additions, 1 deletion
python/tvm/expr.py
topi/python/topi/nn/elemwise.py
+1
-1
1 addition, 1 deletion
topi/python/topi/nn/elemwise.py
topi/python/topi/nn/pooling.py
+1
-1
1 addition, 1 deletion
topi/python/topi/nn/pooling.py
with
5 additions
and
3 deletions
python/tvm/expr.py
+
3
−
1
View file @
b20678b0
...
...
@@ -18,6 +18,7 @@ For example, you can use addexp.a to get the left operand of an Add node.
from
__future__
import
absolute_import
as
_abs
from
._ffi.node
import
NodeBase
,
register_node
from
.
import
make
as
_make
from
.
import
_api_internal
class
ExprOp
(
object
):
def
__add__
(
self
,
other
):
...
...
@@ -60,7 +61,8 @@ class ExprOp(object):
return
_make
.
Mod
(
self
,
other
)
def
__neg__
(
self
):
return
self
.
__mul__
(
-
1
)
neg_one
=
_api_internal
.
_const
(
-
1
,
self
.
dtype
)
return
self
.
__mul__
(
neg_one
)
def
__lshift__
(
self
,
other
):
return
_make
.
Call
(
self
.
dtype
,
"
shift_left
"
,
[
self
,
other
],
Call
.
PureIntrinsic
,
None
,
0
)
...
...
This diff is collapsed.
Click to expand it.
topi/python/topi/nn/elemwise.py
+
1
−
1
View file @
b20678b0
...
...
@@ -17,7 +17,7 @@ def relu(x):
y : tvm.Tensor
The result.
"""
return
tvm
.
compute
(
x
.
shape
,
lambda
*
i
:
tvm
.
max
(
x
(
*
i
),
0
))
return
tvm
.
compute
(
x
.
shape
,
lambda
*
i
:
tvm
.
max
(
x
(
*
i
),
tvm
.
const
(
0
,
x
.
dtype
)
))
@tvm.tag_scope
(
tag
=
tag
.
ELEMWISE
)
...
...
This diff is collapsed.
Click to expand it.
topi/python/topi/nn/pooling.py
+
1
−
1
View file @
b20678b0
...
...
@@ -38,7 +38,7 @@ def global_pool(data, pool_type):
tvm
.
sum
(
data
[
n
,
c
,
dheight
,
dwidth
],
axis
=
[
dheight
,
dwidth
]),
\
tag
=
"
global_pool_sum
"
)
return
tvm
.
compute
((
batch
,
channel
,
1
,
1
),
lambda
n
,
c
,
h
,
w
:
\
tsum
[
n
,
c
,
h
,
w
]
/
(
height
*
width
),
\
tsum
[
n
,
c
,
h
,
w
]
/
(
height
*
width
)
.
astype
(
tsum
.
dtype
)
,
\
tag
=
tag
.
ELEMWISE
)
else
:
raise
ValueError
(
"
Pool type should be
'
avg
'
or
'
max
'
.
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment