[SOLVED] Registering new 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

1 Like

That is perfect, thank you!