Hi there,
I'm running the below code and shows the error. May I confirm what I'm missing? Thanks your help! ================================================= Python 3.7.7 (default, Mar 10 2020, 15:16:38) [GCC 7.5.0] on linux Type "help", "copyright", "credits" or "license" for more information. import tvm from tvm import te tgt_host="llvm" >>> tgt="sdaccel" >>> >>> n = te.var("n") >>> A = te.placeholder((n,), name='A') >>> B = te.placeholder((n,), name='B') >>> C = te.compute(A.shape, lambda i: A[i] + B[i], name="C") >>> >>> s = te.create_schedule(C.op) >>> px, x = s[C].split(C.op.axis[0], nparts=1) >>> >>> s[C].bind(px, tvm.thread_axis("pipeline")) Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'tvm' has no attribute 'thread_axis' ================================================= --- [Visit Topic](https://discuss.tvm.ai/t/attributeerror-module-tvm-has-no-attribute-thread-axis/6606/1) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.ai/email/unsubscribe/3ff37201ca4e5ec9c5a9b43ce9aa58d0698760eb5c852872a6812f954b6fafa5).