Skip to content

Commit 1146225

Browse files
committed
lint
1 parent 91dab15 commit 1146225

4 files changed

Lines changed: 1 addition & 4 deletions

File tree

include/tvm/tir/stmt.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
#include <string>
3030
#include <type_traits>
3131
#include <utility>
32-
#include <vector>
3332

3433
namespace tvm {
3534
namespace tir {

python/tvm/script/ir_builder/tir/ir.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1316,7 +1316,6 @@ def buffer_store(
13161316
)
13171317

13181318

1319-
13201319
def evaluate(value: PrimExpr) -> None:
13211320
"""Evaluate the input expression.
13221321

python/tvm/tir/stmt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from tvm.runtime import Object, Scriptable, const, NDArray
3535

3636
from . import _ffi_api
37-
from .buffer import Buffer, DataProducer
37+
from .buffer import Buffer
3838
from .expr import Var, IterVar
3939

4040

src/tir/ir/stmt.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,6 @@ TVM_FFI_REGISTER_GLOBAL("tir.DeclBuffer").set_body_typed([](Buffer buffer, Stmt
335335

336336
TVM_REGISTER_NODE_TYPE(DeclBufferNode);
337337

338-
339338
// SeqStmt
340339
SeqStmt::SeqStmt(Array<Stmt> seq, Span span) {
341340
bool requires_flattening = std::any_of(

0 commit comments

Comments
 (0)