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
9c2fc095
Commit
9c2fc095
authored
Sep 29, 2017
by
Tianqi Chen
Committed by
GitHub
Sep 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[LINT] Fix pylint (#501)
parent
a7f01253
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
topi/python/topi/rasp/depthwise_conv2d.py
+10
-10
No files found.
topi/python/topi/rasp/depthwise_conv2d.py
View file @
9c2fc095
# pylint: disable=invalid-name,unused-variable
# pylint: disable=invalid-name,unused-variable
, unused-argument
"""Schedule for depthwise_conv2d with auto fusion"""
from
__future__
import
absolute_import
as
_abs
from
collections
import
namedtuple
...
...
@@ -15,15 +15,15 @@ _Schedule = namedtuple('Schedule', ['vh', 'vw', 'vc', 'bc', 'unroll'])
# workloads of depthwise conv mobile net on imagenet
_WORKLOADS
=
[
_Workload
(
112
,
112
,
32
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
112
,
112
,
64
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
56
,
56
,
128
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
56
,
56
,
128
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
28
,
28
,
256
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
28
,
28
,
256
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
14
,
14
,
512
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
14
,
14
,
512
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
14
,
14
,
1024
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
112
,
112
,
32
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
112
,
112
,
64
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
56
,
56
,
128
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
56
,
56
,
128
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
28
,
28
,
256
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
28
,
28
,
256
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
14
,
14
,
512
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
_Workload
(
14
,
14
,
512
,
1
,
3
,
3
,
1
,
1
,
2
,
2
),
_Workload
(
14
,
14
,
1024
,
1
,
3
,
3
,
1
,
1
,
1
,
1
),
]
_SCHEDULES
=
[
...
...
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