Skip to content

Commit 8345689

Browse files
Bordalantiga
authored andcommitted
releasing 2.0.8
1 parent efa83da commit 8345689

File tree

6 files changed

+9
-32
lines changed

6 files changed

+9
-32
lines changed

docs/source-app/levels/basic/build_a_lightning_component.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Organizing your code into Lightning components offers these benefits:
5555
5656
if you know what you are doing, Lightning gives you full control to manage your own
5757
scaling logic, fault-tolerance and even pre-provisioning, all from Python. We even give you
58-
full flexibility to use tools like `terraform <../../cloud/customize_a_lightning_cluster.html>`_ to optimize cloud clusters for your Lightning apps.
58+
full flexibility to use tools like :doc:`terraform <../../cloud/customize_a_lightning_cluster>` to optimize cloud clusters for your Lightning apps.
5959

6060
.. collapse:: Integrate into your current workflow tools
6161

src/lightning/app/CHANGELOG.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

7-
## [UnREleased] - 2023-08-DD
7+
## [2.0.8] - 2023-08-29
88

9-
## Canaged
9+
## Changed
1010

1111
- Change top folder ([#18212](https://github.com/Lightning-AI/lightning/pull/18212))
12-
13-
1412
- Remove `_handle_is_headless` calls in app run loop ([#18362](https://github.com/Lightning-AI/lightning/pull/18362))
1513

16-
1714
### Fixed
1815

1916
- refactor path to root preventing circular import ([#18357](https://github.com/Lightning-AI/lightning/pull/18357))

src/lightning/fabric/CHANGELOG.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,17 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

7-
## [UnReleased] - 2023-08-DD
7+
## [2.0.8] - 2023-08-29
88

9-
### Chnaged
9+
### Changed
1010

1111
- On XLA, avoid setting the global rank before processes have been launched as this will initialize the PJRT computation client in the main process ([#16966](https://github.com/Lightning-AI/lightning/pull/16966))
1212

13-
1413
### Fixed
1514

1615
- Fixed model parameters getting shared between processes when running with `strategy="ddp_spawn"` and `accelerator="cpu"`; this has a necessary memory impact, as parameters are replicated for each process now ([#18238](https://github.com/Lightning-AI/lightning/pull/18238))
17-
18-
1916
- Removed false positive warning when using `fabric.no_backward_sync` with XLA strategies ([#17761](https://github.com/Lightning-AI/lightning/pull/17761))
20-
21-
2217
- Fixed issue where Fabric would not initialize the global rank, world size, and rank-zero-only rank after initialization and before launch ([#16966](https://github.com/Lightning-AI/lightning/pull/16966))
23-
24-
2518
- Fixed FSDP full-precision `param_dtype` training (`16-mixed`, `bf16-mixed` and `32-true` configurations) to avoid FSDP assertion errors with PyTorch < 2.0 ([#18278](https://github.com/Lightning-AI/lightning/pull/18278))
2619

2720

src/lightning/pytorch/CHANGELOG.md

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66

77

8-
## [UnRaleased] - 2023-08-DD
8+
## [2.0.8] - 2023-08-29
99

10-
### Chnaged
10+
### Changed
1111

1212
- On XLA, avoid setting the global rank before processes have been launched as this will initialize the PJRT computation client in the main process ([#16966](https://github.com/Lightning-AI/lightning/pull/16966))
13-
14-
1513
- Fix inefficiency in rich progress bar ([#18369](https://github.com/Lightning-AI/lightning/pull/18369))
1614

17-
1815
### Fixed
1916

2017
- Fixed FSDP full-precision `param_dtype` training (`16-mixed` and `bf16-mixed` configurations) to avoid FSDP assertion errors with PyTorch < 2.0 ([#18278](https://github.com/Lightning-AI/lightning/pull/18278))
21-
22-
2318
- Fixed an issue that prevented the use of custom logger classes without an `experiment` property defined ([#18093](https://github.com/Lightning-AI/lightning/pull/18093))
24-
25-
2619
- Fixed setting the tracking uri in `MLFlowLogger` for logging artifacts to the MLFlow server ([#18395](https://github.com/Lightning-AI/lightning/pull/18395))
27-
28-
2920
- Fixed redundant `iter()` call to dataloader when checking dataloading configuration ([#18415](https://github.com/Lightning-AI/lightning/pull/18415))
30-
31-
3221
- Fixed model parameters getting shared between processes when running with `strategy="ddp_spawn"` and `accelerator="cpu"`; this has a necessary memory impact, as parameters are replicated for each process now ([#18238](https://github.com/Lightning-AI/lightning/pull/18238))
33-
34-
3522
- Properly manage `fetcher.done` with `dataloader_iter` ([#18376](https://github.com/Lightning-AI/lightning/pull/18376))
3623

3724

src/lightning/pytorch/_graveyard/_torchmetrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def compare_version(package: str, op: Callable, version: str, use_base_version:
1717
# https://github.com/Lightning-AI/metrics/blob/v0.7.3/torchmetrics/metric.py#L96
1818
with contextlib.suppress(AttributeError):
1919
if hasattr(torchmetrics.utilities.imports, "_compare_version"):
20-
torchmetrics.utilities.imports._compare_version = compare_version
20+
torchmetrics.utilities.imports._compare_version = compare_version # type: ignore[assignment]
2121

2222
with contextlib.suppress(AttributeError):
2323
if hasattr(torchmetrics.metric, "_compare_version"):

src/version.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.7
1+
2.0.8

0 commit comments

Comments
 (0)