Skip to content

Commit

Permalink
Fix pylint issue in vta/python/vta/top/graphpack.py (apache#3519)
Browse files Browse the repository at this point in the history
This appears in linting using the docker scripts. I'm not sure
why this isn't failing in the standard CI for TVM and it might
be that the docker images haven't been updated in the CI system.

python3 -m pylint vta/python/vta --rcfile=/workspace/tests/lint/pylintrc
Using config file /workspace/tests/lint/pylintrc
************* Module vta.top.graphpack
C:131, 4: Missing method docstring (missing-docstring)
  • Loading branch information
Ramana Radhakrishnan authored and tqchen committed Jul 10, 2019
1 parent b01a87b commit a836413
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/vta/top/graphpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ def __init__(self, bfactor, cfactor, weight_bits):
super().__init__()

def visit_call(self, call):
""" Visit the children. """
# First visit the children.
oshape = _get_shape(call)
odtype = call.checked_type.dtype
Expand Down

0 comments on commit a836413

Please sign in to comment.