You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lightning_app/CHANGELOG.md
+8-37Lines changed: 8 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,66 +4,37 @@ All notable changes to this project will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
6
6
7
-
## [unreleased] - 202Y-MM-DD
7
+
## [1.8.1] - 2022-11-10
8
8
9
9
10
10
### Added
11
11
12
12
- Added the `start` method to the work ([#15523](https://github.com/Lightning-AI/lightning/pull/15523))
13
-
14
-
15
13
- Added a `MultiNode` Component to run with distributed computation with any frameworks ([#15524](https://github.com/Lightning-AI/lightning/pull/15524))
16
-
17
-
18
14
- Expose `RunWorkExecutor` to the work and provides default ones for the `MultiNode` Component ([#15561](https://github.com/Lightning-AI/lightning/pull/15561))
19
-
20
15
- Added a `start_with_flow` flag to the `LightningWork` which can be disabled to prevent the work from starting at the same time as the flow ([#15591](https://github.com/Lightning-AI/lightning/pull/15591))
21
-
22
16
- Added support for running Lightning App with VSCode IDE debugger ([#15590](https://github.com/Lightning-AI/lightning/pull/15590))
23
-
24
17
- Added `bi-directional` delta updates between the flow and the works ([#15582](https://github.com/Lightning-AI/lightning/pull/15582))
18
+
- Added `--setup` flag to `lightning run app` CLI command allowing for dependency installation via app comments ([#15577](https://github.com/Lightning-AI/lightning/pull/15577))
19
+
- Auto-upgrade / detect environment mis-match from the CLI ([#15434](https://github.com/Lightning-AI/lightning/pull/15434))
- Changed the `flow.flows` to be recursive wont to align the behavior with the `flow.works` ([#15466](https://github.com/Lightning-AI/lightning/pull/15466))
30
-
31
-
32
26
- The `params` argument in `TracerPythonScript.run` no longer prepends `--` automatically to parameters ([#15518](https://github.com/Lightning-AI/lightning/pull/15518))
33
-
34
-
35
-
36
-
### Deprecated
37
-
38
-
-
39
-
40
-
41
-
-
42
-
43
-
44
-
### Removed
45
-
46
-
-
47
-
48
-
49
-
-
50
-
27
+
- Only check versions / env when not in the cloud ([#15504](https://github.com/Lightning-AI/lightning/pull/15504))
28
+
- Periodically sync database to the drive ([#15441](https://github.com/Lightning-AI/lightning/pull/15441))
29
+
- Slightly safer multi node ([#15538](https://github.com/Lightning-AI/lightning/pull/15538))
30
+
- Reuse existing commands when running connect more than once ([#15471](https://github.com/Lightning-AI/lightning/pull/15471))
51
31
52
32
### Fixed
53
33
54
-
55
34
- Fixed writing app name and id in connect.txt file for the command CLI ([#15443](https://github.com/Lightning-AI/lightning/pull/15443))
56
-
57
-
58
35
- Fixed missing root flow among the flows of the app ([#15531](https://github.com/Lightning-AI/lightning/pull/15531))
59
-
60
-
61
36
- Fixed bug with Multi Node Component and add some examples ([#15557](https://github.com/Lightning-AI/lightning/pull/15557))
62
-
63
-
64
37
- Fixed a bug where payload would take a very long time locally ([#15557](https://github.com/Lightning-AI/lightning/pull/15557))
65
-
66
-
67
38
- Fixed an issue with the `lightning` CLI taking a long time to error out when the cloud is not reachable ([#15412](https://github.com/Lightning-AI/lightning/pull/15412))
Copy file name to clipboardExpand all lines: src/lightning_lite/CHANGELOG.md
+1-40Lines changed: 1 addition & 40 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,49 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
6
6
7
7
8
-
## [unreleased] - 202Y-MM-DD
9
-
10
-
11
-
### Added
12
-
13
-
-
14
-
15
-
-
16
-
17
-
-
18
-
19
-
20
-
### Changed
21
-
22
-
-
23
-
24
-
-
25
-
26
-
-
27
-
28
-
29
-
### Deprecated
30
-
31
-
-
32
-
33
-
-
34
-
35
-
-
36
-
37
-
38
-
### Removed
39
-
40
-
-
41
-
42
-
-
43
-
44
-
-
45
-
8
+
## [1.8.1] - 2022-11-10
46
9
47
10
### Fixed
48
11
49
12
- Fix an issue with the SLURM `srun` detection causing permission errors ([#15485](https://github.com/Lightning-AI/lightning/issues/15485))
50
-
51
13
- Fixed the import of `lightning_lite` causing a warning 'Redirects are currently not supported in Windows or MacOs' ([#15610](https://github.com/PyTorchLightning/pytorch-lightning/issues/15610))
Copy file name to clipboardExpand all lines: src/pytorch_lightning/CHANGELOG.md
+1-46Lines changed: 1 addition & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,63 +5,18 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
6
6
7
7
8
-
## [unreleased] - 202Y-MM-DD
9
-
10
-
11
-
### Added
12
-
13
-
-
14
-
15
-
-
16
-
17
-
-
18
-
19
-
20
-
### Changed
21
-
22
-
-
23
-
24
-
-
25
-
26
-
-
27
-
28
-
29
-
### Deprecated
30
-
31
-
- Deprecated `pytorch_lightning.utilities.distributed.rank_zero_only` in favor of `pytorch_lightning.utilities.rank_zero_only` ([#15536](https://github.com/Lightning-AI/lightning/pull/15536))
32
-
33
-
-
34
-
35
-
-
36
-
37
-
38
-
### Removed
39
-
40
-
-
41
-
42
-
-
43
-
44
-
-
45
-
8
+
## [1.8.1] - 2022-11-10
46
9
47
10
### Fixed
48
11
49
12
- Fixed `TensorBoardLogger` not validating the input array type when logging the model graph ([#15323](https://github.com/Lightning-AI/lightning/pull/15323))
50
-
51
13
- Fixed an attribute error in `ColossalAIStrategy` at import time when `torch.distributed` is not available ([#15535](https://github.com/Lightning-AI/lightning/pull/15535))
52
-
53
14
- Fixed an issue when calling `fs.listdir` with file URI instead of path in `CheckpointConnector` ([#15413](https://github.com/Lightning-AI/lightning/pull/15413))
54
-
55
15
- Fixed an issue with the `BaseFinetuning` callback not setting the `track_running_stats` attribute for batch normaliztion layers ([#15063](https://github.com/Lightning-AI/lightning/pull/15063))
56
-
57
16
- Fixed an issue with `WandbLogger(log_model=True|'all)` raising an error and not being able to serialize tensors in the metadata ([#15544](https://github.com/Lightning-AI/lightning/pull/15544))
58
-
59
17
- Fixed the gradient unscaling logic when using `Trainer(precision=16)` and fused optimizers such as `Adam(..., fused=True)` ([#15544](https://github.com/Lightning-AI/lightning/pull/15544))
60
-
61
18
- Fixed model state transfer in multiprocessing launcher when running multi-node ([#15567](https://github.com/Lightning-AI/lightning/pull/15567))
62
-
63
19
- Fixed manual optimization raising `AttributeError` with Bagua Strategy ([#12534](https://github.com/PyTorchLightning/pytorch-lightning/issues/12534))
64
-
65
20
- Fixed the import of `pytorch_lightning` causing a warning 'Redirects are currently not supported in Windows or MacOs' ([#15610](https://github.com/PyTorchLightning/pytorch-lightning/issues/15610))
0 commit comments