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
283afac0
Commit
283afac0
authored
Oct 10, 2019
by
Aniket Rangrej
Committed by
Thierry Moreau
Oct 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing tensor not found issue in bitserial operator (#4095)
parent
4b8cb3a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
topi/python/topi/x86/bitserial_conv2d.py
+4
-3
No files found.
topi/python/topi/x86/bitserial_conv2d.py
View file @
283afac0
...
...
@@ -35,9 +35,10 @@ def schedule_bitserial_conv2d(cfg, outs):
if
tag
.
is_broadcast
(
op
.
tag
)
or
'elemwise'
in
op
.
tag
:
if
op
not
in
s
.
outputs
:
s
[
op
]
.
compute_inline
()
for
tensor
in
op
.
input_tensors
and
tensor
.
op
not
in
scheduled_ops
:
if
isinstance
(
tensor
.
op
,
tvm
.
tensor
.
ComputeOp
):
traverse
(
tensor
.
op
)
for
tensor
in
op
.
input_tensors
:
if
tensor
.
op
.
input_tensors
and
(
tensor
.
op
not
in
scheduled_ops
):
if
isinstance
(
tensor
.
op
,
tvm
.
tensor
.
ComputeOp
):
traverse
(
tensor
.
op
)
elif
'spatial_bitserial_conv_nchw'
in
op
.
tag
or
'spatial_bitserial_conv_nhwc'
in
op
.
tag
:
conv_out
=
op
.
input_tensors
[
0
]
...
...
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