Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PyLint] Minor updates to pass pylint locally. #8424

Merged
merged 1 commit into from
Jul 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/tvm/script/diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
"""Bridge from synr's (the library used for parsing the python AST)
DiagnosticContext to TVM's diagnostics
"""
import tvm
from synr import DiagnosticContext, ast

import tvm
from tvm.ir.diagnostics import DiagnosticContext as TVMCtx
from tvm.ir.diagnostics import get_renderer, DiagnosticLevel, Diagnostic

Expand Down
4 changes: 3 additions & 1 deletion python/tvm/topi/random/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,11 @@
# specific language governing permissions and limitations
# under the License.
"""Pseudorandom number kernels."""
import numpy as np

import tvm
import tvm.topi
import numpy as np

from ... import tir
from ...tir import ir_builder

Expand Down