"vscode:/vscode.git/clone" did not exist on "0b3ddec6540d7fc7fb59c1b6184a5e6c9e1d32e0"
CONTRIBUTING.md 4.04 KB
Newer Older
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
1
# Contributing to fairscale
2

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
3
4
5
6
We want to make contributing to this project as easy and transparent as
possible.

## Our Development Process
7

8
9
10
Minor changes and improvements will be released on an ongoing basis. Larger
changes (e.g., changesets implementing a new paper) will be released on a
more periodic basis.
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
11
12

## Pull Requests
13

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
14
15
16
17
18
19
20
21
22
23
We actively welcome your pull requests.

1. Fork the repo and create your branch from `master`.
2. If you've added code that should be tested, add tests.
3. If you've changed APIs, update the documentation.
4. Ensure the test suite passes.
5. Make sure your code lints.
6. If you haven't already, complete the Contributor License Agreement ("CLA").

## Contributor License Agreement ("CLA")
24

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
25
26
27
28
29
30
In order to accept your pull request, we need you to submit a CLA. You only need
to do this once to work on any of Facebook's open source projects.

Complete your CLA here: <https://code.facebook.com/cla>

## Issues
31

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
32
33
34
35
36
37
38
We use GitHub issues to track public bugs. Please ensure your description is
clear and has sufficient instructions to be able to reproduce the issue.

Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
disclosure of security bugs. In those cases, please go through the process
outlined on that page and do not file a public issue.

39
40
41
42
43
44
45
46
47
## Environment setup

```
~$ python3 -m venv venv2
~$ source venv2/bin/activate
(venv2) ~$ cd git/fairscale/
(venv2) ~/git/fairscale $ pip3 install -r requirements-test.txt
```

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
48
## Coding Style
49

50
51
* In your editor, install the [editorconfig](https://editorconfig.org/) extension
  which should ensure that you are following the same standards as us.
52
* Please run black and isort before opening up your PR.
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
53
54

```
55
black .
56
isort .
57
flake8
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
58
```
59
60
61
62
63
* Please read the [editorconfig](.editorconfig) file to understand the exact coding style preferences.
* Please place Python code related to models in fairscale/nn. Place Python code related to optimizers
  in fairscale/optim. Place C++ extensions in fairscale/clib.
* Please put `__all__:List[str] = []` in new `__init__.py` files for consistent importing behavior
  and less development overhead in maintaining an importing list.
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
64

65
66
67
68
69
## Testing

### Static analysis

```
70
mypy --ignore-missing-imports --scripts-are-modules --pretty .
71
72
73
74
75
76
```

### Unit tests

```
pytest
Min Xu's avatar
Min Xu committed
77
78
79
80
81
82
83
# single test
python -m pytest tests/nn/data_parallel/test_oss_ddp.py::test_on_cpu
```

### Check test coverage

```
84
85
python -m pytest --cov-report term --cov=fairscale/nn/data_parallel \
   tests/nn/data_parallel/test_oss_ddp.py::test_on_cpu
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
```

### CircleCI status

From your PR page, you can expand on the CircleCI results. For GPU test, you should see
what CI has run, like:

```
...
----- generated xml file: /home/circleci/fairscale/test-results/junit.xml ------
================== 217 passed, 2 xfailed in 218.74s (0:03:38) ==================
CircleCI received exit code 0
```

The number of passed and failed should give you an idea on whether your local
test was the same or not.

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
103
104
## Commit Guidelines

105
106
107
We follow the same guidelines as AngularJS. Each commit message consists of a **header**,
a **body** and a **footer**.  The header has a special format that includes a **type**,
and a **subject**:
Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
108
109
110
111
112
113
114
115
116
117
118
119
120

```
[<type>] <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
```

Any line of the commit message cannot be longer 100 characters! This allows the message to be easier
to read on github as well as in various git tools.

### Type
121

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
122
123
124
125
126
127
128
129
130
131
132
133
134
135
Must be one of the following:

* **feat**: A new feature
* **fix**: A bug fix
* **cleanup**: Changes that do not affect the meaning of the code (white-space, formatting, missing
  semi-colons, dead code removal etc.)
* **refactor**: A code change that neither fixes a bug or adds a feature
* **perf**: A code change that improves performance
* **test**: Adding missing tests or fixing them
* **chore**: Changes to the build process or auxiliary tools and libraries such as documentation
generation
* **docs**: Documentation only changes

## License
136

Mandeep Singh Baines's avatar
Mandeep Singh Baines committed
137
138
By contributing to fairscale, you agree that your contributions will be licensed
under the LICENSE file in the root directory of this source tree.