You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One problem with how Scope is currently set up is that it's a global state maintained by the runtime. So, we need to keep track of Scopes for individual tasks so they won't get clobbered by each other.
These are the calls that will start a "sub-box" within a "parent box" on the profiler: https://gitlab.com/StanfordLegion/legion/-/blob/209675d6c3aeb5f74cc0f55fffae2e3ef34dec67/runtime/legion.h?page=9#L8531-8543
We want to expose it through the
Scope
class, for C++ and Python.E.g. this feature could be used to separate out a part of a long-running task:
The text was updated successfully, but these errors were encountered: