Skip to content

Commit 1808ee0

Browse files
authored
Add initial contribution guidelines
1 parent a169bb8 commit 1808ee0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -218,3 +218,18 @@ Note the use of `--color` to distinguish between user input and generated text.
218218
know how to utilize it properly. But in any case, you can even disable it with `LLAMA_NO_ACCELERATE=1 make` and the
219219
performance will be the same, since no BLAS calls are invoked by the current implementation
220220

221+
### Contributing
222+
223+
- There are 2 git branches: [master](https://github.com/ggerganov/llama.cpp/commits/master) and [dev](https://github.com/ggerganov/llama.cpp/commits/dev)
224+
- Contributors can open PRs to either one
225+
- Collaborators can push straight into `dev`, but need to open a PR to get stuff to `master`
226+
- Collaborators will be invited based on contributions
227+
- `dev` branch is considered unstable
228+
- `master` branch is considered stable and approved. 3-rd party projects should use the `master` branch
229+
230+
General principles to follow when writing code:
231+
232+
- Avoid adding third-party dependencies, extra files, extra headers, etc.
233+
- Always consider cross-compatibility with other operating systems and architectures
234+
- Avoid fancy looking modern STL constructs, use basic for loops, avoid templates, keep it simple
235+
- There are no strict rules for the code style, but try to follow the patterns in the code (indentation, spaces, etc.). Vertical alignment makes things more readable and easier to batch edit

0 commit comments

Comments
 (0)