Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated GPUStatsMonitor callback #12554

Merged
merged 13 commits into from
Apr 10, 2022
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Removed the deprecated `progress_bar_refresh_rate` argument from the `Trainer` constructor ([#12514](https://github.com/PyTorchLightning/pytorch-lightning/pull/12514))


-
- Removed deprecated `GPUStatsMonitor` callback ([#12554](https://github.com/PyTorchLightning/pytorch-lightning/pull/12554))


-
Expand Down
1 change: 0 additions & 1 deletion docs/source/api_references.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ Callbacks API
Callback
DeviceStatsMonitor
EarlyStopping
GPUStatsMonitor
GradientAccumulationScheduler
LambdaCallback
LearningRateMonitor
Expand Down
1 change: 0 additions & 1 deletion docs/source/extensions/callbacks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ Lightning has a few built-in callbacks.
Callback
DeviceStatsMonitor
EarlyStopping
GPUStatsMonitor
GradientAccumulationScheduler
LambdaCallback
LearningRateMonitor
Expand Down
2 changes: 0 additions & 2 deletions pytorch_lightning/callbacks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from pytorch_lightning.callbacks.device_stats_monitor import DeviceStatsMonitor
from pytorch_lightning.callbacks.early_stopping import EarlyStopping
from pytorch_lightning.callbacks.finetuning import BackboneFinetuning, BaseFinetuning
from pytorch_lightning.callbacks.gpu_stats_monitor import GPUStatsMonitor
rohitgr7 marked this conversation as resolved.
Show resolved Hide resolved
from pytorch_lightning.callbacks.gradient_accumulation_scheduler import GradientAccumulationScheduler
from pytorch_lightning.callbacks.lambda_function import LambdaCallback
from pytorch_lightning.callbacks.lr_monitor import LearningRateMonitor
Expand All @@ -36,7 +35,6 @@
"Callback",
"DeviceStatsMonitor",
"EarlyStopping",
"GPUStatsMonitor",
"XLAStatsMonitor",
"GradientAccumulationScheduler",
"LambdaCallback",
Expand Down
262 changes: 0 additions & 262 deletions pytorch_lightning/callbacks/gpu_stats_monitor.py

This file was deleted.

Loading