Skip to content

Commit

Permalink
Merge branch 'master' into fix/deepspeed_logging_per_gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanNaren committed Nov 15, 2021
2 parents c8ce094 + ae71284 commit 415d0c5
Show file tree
Hide file tree
Showing 88 changed files with 521 additions and 912 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
name: Bug report
about: Create a report to help us improve
about: Create a bug report to help us improve
title: ''
labels: bug / fix, help wanted
labels: bug
assignees: ''
---

## 🐛 Bug

<!-- A clear and concise description of what the bug is. -->
<!-- A clear and concise description of the bug. -->

### To Reproduce

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Typos and doc fixes
about: Typos and doc fixes
about: Tell us about how we can improve our documentation
title: ''
labels: documentation
labels: docs
assignees: ''
---

Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Feature request
about: Suggest an idea for this project
about: Propose a feature for this project
title: ''
labels: enhancement
labels: feature
assignees: ''
---

Expand All @@ -12,7 +12,7 @@ assignees: ''

### Motivation

<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too -->
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link it here -->

### Pitch

Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
---
name: Code improvement
about: Suggest a code improvement, i.e. refactoring, deprecation, etc.
name: Refactor
about: Suggest a code refactor or deprecation
title: ''
labels: refactors / code health
labels: refactor
assignees: ''
---

## Proposed refactoring or deprecation
## Proposed refactor

<!-- A clear and concise description of the code improvement -->
<!-- A clear and concise description of the refactor -->

### Motivation

<!-- Please outline the motivation for the proposal. If this is related to another GitHub issue, please link here too -->
<!-- Please outline the motivation for the proposal. If this is related to another GitHub issue, please link it here -->

### Pitch

Expand Down
1 change: 1 addition & 0 deletions .github/lightning-probot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tracking_issue: 10530
6 changes: 3 additions & 3 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pull_request_rules:
- "#changes-requested-reviews-by=0" # no requested changes
actions:
label:
add: [ "0:] Ready-To-Go" ]
add: [ "ready" ]

- name: Not ready yet
conditions:
Expand All @@ -54,13 +54,13 @@ pull_request_rules:
- "#changes-requested-reviews-by>=1" # no requested changes
actions:
label:
remove: [ "0:] Ready-To-Go" ]
remove: [ "ready" ]

- name: add core reviewer
conditions:
- -conflict # skip if conflict
- -draft # filter-out GH draft PRs
- label="0:] Ready-To-Go"
- label="ready"
- "#approved-reviews-by<3" # number of review approvals
- "#review-requested<3" # number of requested reviews
actions:
Expand Down
4 changes: 2 additions & 2 deletions .github/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ issues:
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- Important
- Priority
- p0
- p1
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it hasn't had any recent activity.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_dockers.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI build Docker
name: Docker
# https://www.docker.com/blog/first-docker-github-action-is-here
# https://github.com/docker/build-push-action
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
Expand All @@ -23,9 +23,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# should be the config used in '.github/workflows/release-docker.yml', but we just keep one to check.
python_version: ["3.9"]
pytorch_version: ["1.9"]
# the config used in '.azure-pipelines/gpu-tests.yml' since the Dockerfile uses the cuda image
python_version: ["3.7"]
pytorch_version: ["1.8"]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_pkg-install.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Install pkg
name: Package

# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
Expand All @@ -9,7 +9,7 @@ on: # Trigger the workflow on push or pull request, but only for the master bra

jobs:

pkg-install:
install:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_schema.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: CI action schema
name: Schema
on: # Trigger the workflow on push or pull request, but only for the master branch
push: {}
pull_request:
branches: [master, "release/*"]

jobs:
validate-schema:
check:
runs-on: ubuntu-20.04
steps:
- name: Checkout
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/ci_test-base.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# this jobs runs `pytest` over the source directory. It does not install any extra dependencies.
# this is useful to catch errors where an import has been added which is not part of the basic dependencies.
name: CI basic testing
name: Test

# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
Expand All @@ -10,8 +10,7 @@ on: # Trigger the workflow on push or pull request, but only for the master bra
branches: [master, "release/*"]

jobs:
doctest:

source:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_test-conda.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PyTorch & Conda
name: Test

# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
Expand All @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8"] # previous to last Python version as that one is already used in test-full
pytorch-version: ["1.7", "1.8", "1.9", "1.10"]
pytorch-version: ["1.7", "1.8", "1.9", "1.10"] # nightly: add when there's a release candidate

# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 35
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_test-full.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI complete testing
name: Test

# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on: # Trigger the workflow on push or pull request, but only for the master branch
Expand All @@ -10,7 +10,7 @@ on: # Trigger the workflow on push or pull request, but only for the master bra

jobs:

pytest:
cpu:

runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == false
Expand Down
Loading

0 comments on commit 415d0c5

Please sign in to comment.