Searched refs:profile_memory (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/tools/build/src/engine/ |
D | mem.h | 50 #define BJAM_MALLOC(s) (profile_memory(s), bjam_malloc_x(s)) 51 #define BJAM_MALLOC_ATOMIC(s) (profile_memory(s), bjam_malloc_atomic_x(s)) 52 #define BJAM_CALLOC(n,s) (profile_memory(n*s), bjam_calloc_x(n,s)) 53 #define BJAM_CALLOC_ATOMIC(n,s) (profile_memory(n*s), bjam_calloc_atomic_x(n,s)) 54 #define BJAM_REALLOC(p,s) (profile_memory(s), bjam_realloc_x(p,s)) 56 #define BJAM_MALLOC_RAW(s) (profile_memory(s), bjam_malloc_raw_x(s)) 57 #define BJAM_CALLOC_RAW(n,s) (profile_memory(n*s), bjam_calloc_raw_x(n,s)) 58 #define BJAM_REALLOC_RAW(p,s) (profile_memory(s), bjam_realloc_raw_x(p,s))
|
D | debug.h | 48 void profile_memory( long mem );
|
D | debug.cpp | 76 void profile_memory( long mem ) in profile_memory() function
|
/third_party/mindspore/mindspore/profiler/ |
D | profiling.py | 187 profile_memory = "off" 189 profile_memory = "on" 202 "profile_memory": profile_memory
|
/third_party/mindspore/tests/st/profiler/ |
D | test_profiler.py | 176 profiler = Profiler(profile_memory=True, output_path='data')
|