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
Currently, in NVTX Python, the env var NVTX_DISABLE can disable public functions like nvtx.push_range, as implemented in #24.
However, because nvtx.Profile uses private functions like nvtx._lib.lib.push_range instead of public ones, NVTX_DISABLE can not disable nvtx.Profile, which is unexpected in my opinion.
The text was updated successfully, but these errors were encountered:
Currently, in NVTX Python, the env var
NVTX_DISABLE
can disable public functions likenvtx.push_range
, as implemented in #24.However, because
nvtx.Profile
uses private functions likenvtx._lib.lib.push_range
instead of public ones,NVTX_DISABLE
can not disablenvtx.Profile
, which is unexpected in my opinion.The text was updated successfully, but these errors were encountered: