Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1021 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (24 loc) · 1021 Bytes

GitHub Workflow

We're following basic GitHub Flow. If you have no idea what we're talking about, check out GitHub's official guide. Note that merge is only performed by the repository maintainer.

Guide for performing commits:

  • Isolate each commit to one component/bugfix/issue/feature
  • Use a standard commit message format:
Description intent of your changes

[List of changes]

Signed-off-by: Your Name [email protected]

For example:

Add support of new NPU

* Adding Dockerfile.<npu name>.server
* Fixing pytest args
* Adding NPU specific testcases

  Signed-off-by: [email protected]
  • Each developer should fork this repository and add the team as a Contributor
  • Push your changes to your private fork and do "pull-request" to this repository
  • Use a pull request to do code review
  • Use issues to keep track of what is going on