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
I am trying to use NVTX3_FUNC_RANGE(), nvtx3::scoped_range or nvtx3::scoped_range_in<nvtx3::domain::global> but neither is working - the range does not show in nvperf / nvvp.
I have tested nvtxRangePush and nvtx3::scoped_range_in<my_domain> and these ranges show in profiling tools correctly.
Configuration
GPU CARD: GeForce GTX 1650 Mobile
driver version: 520.61.05
CUDA version: 11.8
OS version: Ubuntu 22.04
Reproduction docker
I have prepared a simple reproduction docker here.
Reproduction code:
structmy_domain{ staticconstexprcharconst* name{"my_domain"}; };
voidfunction_my_domain(){
// this range does show in profiling tools as expected
nvtx3::scoped_range_in<my_domain> r(__FUNCTION__);
std::this_thread::sleep_for(1s);
}
voidfunction_global(){
// this range does not show in profiling tools
nvtx3::scoped_range r(__FUNCTION__);
std::this_thread::sleep_for(1s);
}
The text was updated successfully, but these errors were encountered:
I am trying to use
NVTX3_FUNC_RANGE()
,nvtx3::scoped_range
ornvtx3::scoped_range_in<nvtx3::domain::global>
but neither is working - the range does not show in nvperf / nvvp.I have tested
nvtxRangePush
andnvtx3::scoped_range_in<my_domain>
and these ranges show in profiling tools correctly.Configuration
Reproduction docker
I have prepared a simple reproduction docker here.
Reproduction code:
The text was updated successfully, but these errors were encountered: