Skip to content

Commit 374e856

Browse files
authored
Merge branch 'master' into master
2 parents 13f5fb4 + 2c8758f commit 374e856

File tree

44 files changed

+732
-302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+732
-302
lines changed

.github/checkgroup.yml

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -287,27 +287,28 @@ subprojects:
287287
- "Store.cloud (test_store Mac)"
288288
- "Store.cloud (test_store Windows)"
289289

290-
- id: "lightning_app: Azure"
291-
paths:
292-
- ".actions/**"
293-
- ".azure/app-cloud-e2e.yml"
294-
- "src/lightning/__about__.py"
295-
- "src/lightning/__init__.py"
296-
- "src/lightning/__main__.py"
297-
- "src/lightning/__setup__.py"
298-
- "src/lightning/__version__.py"
299-
- "src/lightning/app/**"
300-
- "src/lightning_app/*"
301-
- "examples/app/**"
302-
- "requirements/app/**"
303-
- "tests/integrations_app/**"
304-
- "!tests/integrations_app/flagship/**"
305-
- "setup.py"
306-
- "!requirements/*/docs.txt"
307-
- "!*.md"
308-
- "!**/*.md"
309-
checks:
310-
- "App.cloud-e2e"
290+
# FixMe: re-enable when BE stabilize
291+
# - id: "lightning_app: Azure"
292+
# paths:
293+
# - ".actions/**"
294+
# - ".azure/app-cloud-e2e.yml"
295+
# - "src/lightning/__about__.py"
296+
# - "src/lightning/__init__.py"
297+
# - "src/lightning/__main__.py"
298+
# - "src/lightning/__setup__.py"
299+
# - "src/lightning/__version__.py"
300+
# - "src/lightning/app/**"
301+
# - "src/lightning_app/*"
302+
# - "examples/app/**"
303+
# - "requirements/app/**"
304+
# - "tests/integrations_app/**"
305+
# - "!tests/integrations_app/flagship/**"
306+
# - "setup.py"
307+
# - "!requirements/*/docs.txt"
308+
# - "!*.md"
309+
# - "!**/*.md"
310+
# checks:
311+
# - "App.cloud-e2e"
311312

312313
- id: "lightning_app: Docs"
313314
paths:

.github/workflows/ci-tests-fabric.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,8 @@ jobs:
137137
working-directory: tests/tests_fabric
138138
# NOTE: do not include coverage report here, see: https://github.com/nedbat/coveragepy/issues/1003
139139
run: |
140-
echo $GITHUB_RUN_ID
141140
python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \
142-
-m pytest -v --timeout=30 --durations=50 --random-order-seed=$GITHUB_RUN_ID
141+
-m pytest -v --timeout=30 --durations=50
143142
144143
- name: Statistics
145144
if: success()

SECURITY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
2-

docs/source-fabric/glossary/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Glossary
4040

4141
.. displayitem::
4242
:header: Checkpoint
43-
:button_link: ../guide/checkpoints.html
43+
:button_link: ../guide/checkpoint.html
4444
:col_css: col-md-4
4545

4646
.. displayitem::
@@ -80,7 +80,7 @@ Glossary
8080

8181
.. displayitem::
8282
:header: Jypyter
83-
:button_link: ../launch/notebook.html
83+
:button_link: ../launch/notebooks.html
8484
:col_css: col-md-4
8585

8686
.. displayitem::

docs/source-fabric/guide/multi_node/cloud.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ Next steps
103103
<div class="row">
104104

105105
.. displayitem::
106-
:header: Lightning App Docs
107-
:description: Learn more about apps and the Lightning cloud.
106+
:header: Lightning Platform
107+
:description: Develop, Train and Deploy models on the cloud
108108
:col_css: col-md-4
109109
:button_link: https://lightning.ai
110110
:height: 150

docs/source-fabric/links.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.. _PyTorchJob: https://www.kubeflow.org/docs/components/training/pytorch/
22
.. _Kubeflow: https://www.kubeflow.org
3-
.. _Trainer: https://lightning.ai/docs/pytorch/stable/common/
3+
.. _Trainer: https://lightning.ai/docs/pytorch/stable/common/trainer.html

docs/source-pytorch/advanced/post_training_quantization.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Model Quantization
2020

2121
Model quantization is an efficient model optimization tool that can accelerate the model inference speed and decrease the memory load while still maintaining the model accuracy.
2222

23-
Different from the inherent model quantization callback "QuantizationAwareTraining" in PyTorch Lightning, Intel® Neural Compressor provides a convenient model quantization API to quantize the already-trained Lightning module with Post-training Quantization and Quantization Aware Training. This extension API exhibits the merits of an ease-of-use coding environment and multi-functional quantization options. The user can easily quantize their fine-tuned model by adding a few clauses to their original code. We only introduce post-training quantization in this document.
23+
Intel® Neural Compressor provides a convenient model quantization API to quantize the already-trained Lightning module with Post-training Quantization and Quantization Aware Training. This extension API exhibits the merits of an ease-of-use coding environment and multi-functional quantization options. The user can easily quantize their fine-tuned model by adding a few clauses to their original code. We only introduce post-training quantization in this document.
2424

2525
There are two post-training quantization types in Intel® Neural Compressor, post-training static quantization and post-training dynamic quantization. Post-training dynamic quantization is a recommended starting point because it provides reduced memory usage and faster computation without additional calibration datasets. This type of quantization statically quantizes only the weights from floating point to integer at conversion time. This optimization provides latencies close to post-training static quantization. But the outputs of ops are still stored with the floating point, so the increased speed of dynamic-quantized ops is less than a static-quantized computation.
2626

requirements/pytorch/base.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
numpy >=1.17.2, <1.24.4
55
torch >=1.11.0, <=2.0.0
6-
tqdm >=4.57.0, <4.65.0
6+
tqdm >=4.57.0, <4.66.0
77
PyYAML >=5.4, <=6.0
88
fsspec[http] >2021.06.0, <2023.5.0
99
torchmetrics >=0.7.0, <0.12.0 # needed for using fixed compare_version

requirements/pytorch/extra.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
matplotlib>3.1, <3.6.2
66
omegaconf >=2.0.5, <2.4.0
77
hydra-core >=1.0.5, <1.4.0
8-
jsonargparse[signatures] >=4.18.0, <4.19.0
8+
jsonargparse[signatures] >=4.18.0, <4.22.0
99
rich >=12.3.0, <=13.0.1
1010
tensorboardX >=2.2, <=2.5.1 # min version is set by torch.onnx missing attribute

requirements/pytorch/test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ pandas >1.0, <2.0.2 # needed in benchmarks
1515
fastapi <0.87.0 # for `ServableModuleValidator`
1616
uvicorn <0.22.1 # for `ServableModuleValidator`
1717

18-
tensorboard >=2.9.1, <2.12.0 # for `TensorBoardLogger`
18+
tensorboard >=2.9.1, <2.14.0 # for `TensorBoardLogger`
1919
protobuf <=3.20.1 # strict # an extra is updating protobuf, this pin prevents TensorBoard failure

0 commit comments

Comments
 (0)