Carlos Mocholí
Carlos Mocholí
## What does this PR do? With the objective of reducing notification noise, I'm moving myself to the PL section ### Does your PR introduce any breaking changes? If yes,...
## What does this PR do? Minor test refactor ### Does your PR introduce any breaking changes? If yes, please list them. None ## Before submitting - [n/a] Was this...
## What does this PR do? Fixes https://github.com/Lightning-AI/lightning/issues/13989 ### Does your PR introduce any breaking changes? If yes, please list them. None ## Before submitting - [x] Was this **discussed/approved**...
## Proposed refactoring or deprecation Does `precision="mixed"` act differently to `precision=16` in any way? I understand that "mixed" is more correct as 16-bit precision can still run some computations in...
## What does this PR do? Refactor after https://github.com/Lightning-AI/lightning/issues/13290 Re-do of https://github.com/Lightning-AI/lightning/pull/13365 Benefits: - Separates logging concerns into message generation and actual logging - Unifies testing. - The rank prefix...
These 2 should be equal on Python>=3.7 ```python from typing import Optional from jsonargparse import ArgumentParser class Foo: def __init__(self, x: Optional[str] = None) -> None: self.x = x parser...
## 🚀 Feature ### Motivation https://github.com/PyTorchLightning/pytorch-lightning/tree/master/pl_examples has become a place for more tests which should be in tests instead. It defeats the purpose of being simple examples for users to...
Avoids the error: ```python RuntimeError: one of the variables needed for gradient computation has been modified by an inplace operation: [torch.cuda.LongTensor [128]] is at version 3; expected version 2 instead....
## What does this PR do? Minor cleanup around dtype management. No intended logic changes. The added tests just increase the coverage. ### Does your PR introduce any breaking changes?...
## What does this PR do? Move XLA utilities together with the TPUAccelerator Deprecate one more redundant utility function Follow-up to https://github.com/Lightning-AI/lightning/pull/14514 Part of #11826 Part of #12786 ### Does...