Skip to content

Commit 8749bd3

Browse files
authored
Merge branch 'master' into HYPERPARAMS-SAVE-#8912
2 parents cbea665 + f14a47a commit 8749bd3

File tree

382 files changed

+14610
-8703
lines changed

Some content is hidden

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

382 files changed

+14610
-8703
lines changed

.azure-pipelines/gpu-benchmark.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# Python package
2+
# Create and test a Python package on multiple Python versions.
3+
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
5+
6+
trigger:
7+
tags:
8+
include:
9+
- '*'
10+
branches:
11+
include:
12+
- "master"
13+
- "release/*"
14+
- "refs/tags/*"
15+
16+
pr: none
17+
118
schedules:
219
- cron: "0 0 * * *" # At the end of every day
320
displayName: Daily midnight benchmark

.azure-pipelines/gpu-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- bash: |
5252
python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if 'horovod' not in line] ; open(fname, 'w').writelines(lines)"
5353
pip install fairscale>=0.3.4
54-
pip install "deepspeed==0.4.3" # FIXME: bug with >= 0.4.4
54+
pip install deepspeed==0.5.4
5555
pip install . --requirement requirements/devel.txt
5656
pip list
5757
displayName: 'Install dependencies'

.github/CODEOWNERS

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# the repo. Unless a later match takes precedence,
66
# @global-owner1 and @global-owner2 will be requested for
77
# review when someone opens a pull request.
8-
* @williamfalcon @borda @tchaton @SeanNaren @carmocca @awaelchli @justusschock @kaushikb11
8+
* @williamfalcon @borda @tchaton @SeanNaren @carmocca @awaelchli @justusschock @kaushikb11 @rohitgr7
99

1010
# CI/CD and configs
1111
/.github/ @borda @tchaton @carmocca
@@ -21,14 +21,16 @@
2121
# Packages
2222
/pytorch_lightning/accelerators @williamfalcon @tchaton @SeanNaren @awaelchli @justusschock @kaushikb11
2323
/pytorch_lightning/callbacks @williamfalcon @tchaton @carmocca @borda @kaushikb11
24-
/pytorch_lightning/cluster_environments @borda @tchaton @SeanNaren @carmocca @kaushikb11
2524
/pytorch_lightning/core @tchaton @SeanNaren @borda @carmocca @justusschock @kaushikb11
2625
/pytorch_lightning/distributed @williamfalcon @tchaton @awaelchli @kaushikb11
2726
/pytorch_lightning/loggers @tchaton @awaelchli @borda
27+
/pytorch_lightning/loggers/wandb.py @borisdayma
28+
/pytorch_lightning/loggers/neptune.py @shnela @HubertJaworski @pkasprzyk @pitercl @Raalsky @aniezurawski @kamil-kaczmarek
2829
/pytorch_lightning/loops @tchaton @awaelchli @justusschock @carmocca
2930
/pytorch_lightning/overrides @tchaton @SeanNaren @borda
3031
/pytorch_lightning/plugins @tchaton @SeanNaren @awaelchli @justusschock
3132
/pytorch_lightning/profiler @williamfalcon @tchaton @borda @carmocca
33+
/pytorch_lightning/profiler/pytorch.py @nbcsm @guotuofeng
3234
/pytorch_lightning/trainer @williamfalcon @borda @tchaton @SeanNaren @carmocca @awaelchli @justusschock @kaushikb11
3335
/pytorch_lightning/trainer/connectors @tchaton @SeanNaren @carmocca @borda
3436
/pytorch_lightning/tuner @SkafteNicki @borda @awaelchli
@@ -38,11 +40,6 @@
3840
/pytorch_lightning/trainer/connectors/logger_connector @tchaton @carmocca
3941
/pytorch_lightning/trainer/progress.py @tchaton @awaelchli @carmocca
4042

41-
# Metrics
42-
/pytorch_lightning/metrics/ @SkafteNicki @ananyahjha93 @justusschock
43-
/tests/metrics/ @SkafteNicki @ananyahjha93 @justusschock
44-
/docs/source/metrics.rst @SkafteNicki @ananyahjha93 @justusschock
45-
4643
# API
4744
/pytorch_lightning/callbacks/base.py @williamfalcon @awaelchli @ananthsub @carmocca
4845
/pytorch_lightning/core/datamodule.py @williamFalcon @awaelchli @ananthsub @carmocca

.github/CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ formatting errors. In certain cases, a missing blank line or a wrong indent can
168168
Run these commands
169169

170170
```bash
171+
git submodule update --init --recursive
171172
pip install -r requirements/docs.txt
172173
cd docs
173174
make html
@@ -315,8 +316,6 @@ def test_explain_what_is_being_tested(tmpdir):
315316
Test description about text reason to be
316317
"""
317318

318-
# os.environ["PL_DEV_DEBUG"] = '1' # [OPTIONAL] When activated, you can use internal trainer.dev_debugger
319-
320319
class ExtendedModel(BoringModel):
321320
...
322321

.github/ISSUE_TEMPLATE/code_improvement.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Code improvement
33
about: Suggest a code improvement, i.e. refactoring, deprecation, etc.
44
title: ''
5-
labels: enhancement, help wanted, refactors / code health
5+
labels: refactors / code health
66
assignees: ''
77
---
88

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Typos and doc fixes
33
about: Typos and doc fixes
44
title: ''
5-
labels: typo, documentation
5+
labels: documentation
66
assignees: ''
77
---
88

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: Feature request
33
about: Suggest an idea for this project
44
title: ''
5-
labels: enhancement, help wanted
5+
labels: enhancement
66
assignees: ''
77
---
88

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Verify Issue Linking
2+
3+
on:
4+
pull_request:
5+
branches: [master]
6+
types: [opened, edited, reopened, ready_for_review]
7+
check_run:
8+
9+
jobs:
10+
verify_linked_issue:
11+
runs-on: ubuntu-latest
12+
name: Ensure Pull Request has a linked issue.
13+
if: github.event.pull_request.draft == false
14+
steps:
15+
- name: Verify Linked Issue
16+
uses: hattan/[email protected]
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/code-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
run: |
2020
grep mypy requirements/test.txt | xargs -0 pip install
2121
pip list
22-
- run: mypy
22+
- run: mypy --install-types --non-interactive

.github/workflows/events-recurrent.yml

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

2121
steps:
2222
- name: Setup gcloud CLI
23-
uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
23+
uses: google-github-actions/setup-gcloud@master
2424
with:
2525
version: '290.0.1'
2626
service_account_key: ${{ secrets.GKE_SA_KEY_BASE64 }}

0 commit comments

Comments
 (0)