sure @sanirudh ,
basically , lets the program is such :
a = te.placeholder()
b = te.placeholder()
c = a+b
so here i want the schedule to be as :
BufferLoad(a)
BufferLoad(b)
compute(c)
BufferStore(c)
i mean this is a most abstract version , but what i mean to say is that , once i replace these BufferLoad/Store inst with external intrisic , is there a way to display them in the schedule .
Currently , there is no information about the BufferLoad and BufferStore operation as such , so wanted to check if its possible to display these buffer commands also in the schedule ?