File size: 392 Bytes
d90b3a8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Sample profiling config
{
# Turns on nsys and pytorch profiling
"profile": true,
# pytorch profiler options
"profile_step_start": 10,
"profile_step_stop": 12,
# pytorch memory profiler options
"memory_profiling": true,
"memory_profiling_path": tensorboard,
# All trace files (pytorch, nsys, tensorboard, etc) will be written here
"tensorboard_dir": "tensorboard",
}
|