gpu-monitor.yaml 374 B

1234567891011
  1. defaults:
  2. - default.yaml
  3. gpu_stats_monitor:
  4. _target_: pytorch_lightning.callbacks.GPUStatsMonitor
  5. # [2021-08-13] TD: I just want the intra_step_size but it'll error if I
  6. # don't have memory_utilization and gpu_utilization.
  7. # Maybe I should write a callback with just the intra_step_size.
  8. memory_utilization: True
  9. gpu_utilization: True
  10. intra_step_time: True