cgerum opened a new pull request #7954:
URL: https://github.com/apache/tvm/pull/7954


   This is just a little inconsistency I noticed when trying to run the 
following script:
   
   ```
   import tvm
   import tvm.testing
   from tvm import te
   import numpy as np
   from tvm.contrib import cc
   
   tgt = "llvm  -runtime=c"
   
   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)
   
   
   fadd = tvm.build(s, [A, B, C], tgt, name="myadd")
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to