Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 2.58 KB

File metadata and controls

46 lines (35 loc) · 2.58 KB

How to contribute

We welcome contributions! Please follow the instructions below for your Pull Requests (PRs).

How to submit your changes

  1. Fork the repository in GitHub.
  2. Clone the project.
  3. Create a new branch from the develop branch:
    $ git checkout -b fix/my/branch 
  4. Commit your changes:
    $ git add <yourFiles>
    $ git commit -a -m "My new feature/fix"
  5. Push your work to your repository:
    $ git push -u myRepo feat/my/branch
  6. Create a Pull Request (PR) to the develop branch.
  7. When you open PR, there are a few GitHub actions. One of them is the checker for the Contributor License Agreement, CLA, if you haven't signed before, you will be prompted with the link to sign the CLA. Use the same email as you commit email.

Please, ensure that your changes are merged with the latest changes in the develop branch, and the code follows the code conventions (see below).

What's next?

We check the PR and test it internally. Be aware we are a very small team. Thus, depending on the PR, it might take some time for us to review it since we check the PR with our regression tests and benchmarks for all backends (OCL/SPIR-V/PTX platforms) as well as with different drivers and Operating Systems.

Code of Conduct

For the PR process as well as any issues and discussions we follow this CODE_OF_CONDUCT.

How is the review process?

  1. We have a few GitHub actions, such as code formatter, documentation rendering and checks for the CLA (Contributor License Agreement).
  2. As mentioned earlier, if you haven't signed the CLA yet, you will be redirected to the llama3.java-tornadovm CLA webpage, where you can read and review it. If you agree with the terms, then you will sign it.
  3. After that, the llama3.java-tornadovm team can process your PR to be able to merge it into the llama3.java-tornadovm's codebase.
  4. At least two researchers/engineers from the llama3.java-tornadovm team will review your PR. Expect a few comments, questions and possible changes. This is a totally normal process, and it tries not to introduce untested code for specific devices, better documentation, etc. We are proud to say that llama3.java-tornadovm is 10+ years of active development, with many different researchers and developers. Thus, we prioritize code maintainability and reproducibility, and we will work together to guarantee this as much as possible.