hi ,
i am little confused about the difference between matched_buffer.data and
matched_buffer.access_ptr?
for ex:
a = T.match_buffer(inp , (16) ,…)
T.evaluate(
T.call_extern(a.data …)
vs
Y.call_extern(a.access_ptr(…) , …)
)
according to my understanding , both will return the pointer to data of the buffer , but using the former (data directly) yeilds wrong output.