I would like to make use of the memory scope feature to represent the memory hierarchy of my device in TVM after following the tensorization tutorial of mlc.ai.
Is there a way to add/register my own memory scopes?
I would like to make use of the memory scope feature to represent the memory hierarchy of my device in TVM after following the tensorization tutorial of mlc.ai.
Is there a way to add/register my own memory scopes?
Likely you can start by reusing the same hierarchy(global, local, shared) and add tags to it , e.g. global:texture1d
That is perfect, thank you!