Source code for profiling_utils

import numba.cuda


[docs]def start_profiling(do_prof): if (do_prof): numba.cuda.profile_start()
[docs]def stop_profiling(do_prof): if (do_prof): numba.cuda.profile_stop()