Searched refs:use_tracing (Results 1 – 5 of 5) sorted by relevance
/external/pytorch/torch/csrc/utils/ |
D | pythoncapi_compat.h | 368 tstate->cframe->use_tracing = 0; in PyThreadState_EnterTracing() 370 tstate->use_tracing = 0; in PyThreadState_EnterTracing() 380 int use_tracing = (tstate->c_tracefunc != _Py_NULL in PyThreadState_LeaveTracing() local 384 tstate->cframe->use_tracing = use_tracing; in PyThreadState_LeaveTracing() 386 tstate->use_tracing = use_tracing; in PyThreadState_LeaveTracing()
|
/external/skia/tools/perf-canvaskit-puppeteer/ |
D | perf-canvaskit-with-puppeteer.js | 256 if (options.use_tracing) { 257 const categories = options.use_tracing.split(','); 281 if (options.use_tracing) {
|
/external/pytorch/test/jit/ |
D | test_freezing.py | 2068 use_tracing = [True, False] 2072 conv_bias, module_pairs, use_tracing, bn_running_stats 2267 use_tracing = [False, True] 2272 conv_bias, modules, use_tracing, ops, use_scalar 2352 use_tracing = [True, False] 2356 module_pairs, use_tracing, bn_running_stats 2420 use_tracing = [True, False] 2428 for modules, tracing, dim in product(module_pairs, use_tracing, dims): 2490 use_tracing = [True, False] 2494 module_pairs, use_tracing, bn_running_stats [all …]
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.11.rst | 2541 tstate->cframe->use_tracing = 0; 2543 tstate->use_tracing = 0; 2549 int use_tracing = (tstate->c_tracefunc != NULL || tstate->c_profilefunc != NULL); 2552 tstate->cframe->use_tracing = use_tracing; 2554 tstate->use_tracing = use_tracing;
|
D | 3.10.rst | 2323 * The ``PyThreadState.use_tracing`` member has been removed to optimize Python.
|