Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lightning_fabric/wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(
forward_module: The module to wrap the ``forward`` method on.
precision: Reference to the precision plugin for handling precision context
original_module: The original, unmodified module as passed into the
:meth:`pytorch_lightning.lite.lite.Fabric.setup` method. This is needed when attribute lookup
:meth:`lightning_fabric.fabric.Fabric.setup` method. This is needed when attribute lookup
on this wrapper should pass through to the original module.
"""
super().__init__()
Expand Down
17 changes: 0 additions & 17 deletions src/pytorch_lightning/lite/__init__.py

This file was deleted.

313 changes: 0 additions & 313 deletions src/pytorch_lightning/lite/lite.py

This file was deleted.

4 changes: 0 additions & 4 deletions tests/tests_app/core/scripts/lightning_overrides.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from pytorch_lightning import LightningDataModule, LightningModule, Trainer
from pytorch_lightning.accelerators.accelerator import Accelerator
from pytorch_lightning.callbacks import Callback
from pytorch_lightning.lite import LightningLite
from pytorch_lightning.loggers import LightningLoggerBase
from pytorch_lightning.loops.base import Loop
from pytorch_lightning.plugins import PrecisionPlugin
Expand Down Expand Up @@ -48,8 +47,5 @@ class BoringLoop(Loop):
class BoringMetric(Metric):
pass

class BoringLightningLite(LightningLite):
pass

class BoringBaseProfiler(BaseProfiler):
pass
Loading