Hi,
Got an question about tvm buffer. In python test_lang_buffer.py, there is way to access the index after vload.
Ab = tvm.decl_buffer((m, n), tvm.float32, elem_offset=100) load = Ab.vload([2, 3]) offset = tvm.ir_pass.Simplify(load.index)
I am wondering what is the way to do that in C++. I have a hard time to find something similar.
Thanks.