cupy.cuda.profile#
- cupy.cuda.profile()[source]#
Enable CUDA profiling during with statement.
This function enables profiling on entering a with statement, and disables profiling on leaving the statement.
>>> with cupy.cuda.profile(): ... # do something you want to measure ... pass
Note
When starting
nvproffrom the command line, manually setting--profile-from-start offmay be required for the desired behavior.Warning
This context manager is deprecated. Please use
cupyx.profiler.profileinstead.