Skip to content

Commit

Permalink
[LINT] Fix pylint (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen authored Sep 30, 2017
1 parent a7f0125 commit 9c2fc09
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions topi/python/topi/rasp/depthwise_conv2d.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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
Expand All @@ -15,15 +15,15 @@

# 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 = [
Expand Down

0 comments on commit 9c2fc09

Please sign in to comment.