First off, I'm really glad you're reading this, because we need volunteer developers to help improve this project and make it more useful to other OpenCL and Rust developers.
The following is a set of guidelines for contributing to cl3
and its packages, which are hosted in the cl3
repository on GitHub. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.
If you've noticed a bug or have a feature request then please raise a new issue. It's generally best to check the issues and pull requests (open and closed) to ensure that someone else has not noticed it before you. I recommend that you wait for confirmation of your bug or approval for your feature request in this way before starting to code.
Note: many OpenCL issues are hardware specific, so it is often useful to describe your setup, i.e.:
cl3
features, e.g. ["CL_VERSION_1_2", "CL_VERSION_2_0", "CL_VERSION_2_1", "CL_VERSION_2_1"] or default- OpenCL target device vendor and version
- OpenCL ICD loader vendor and version
- Rust version
rustc --version
- operating system
- and any other relevant information.
Please abide by our Code of Conduct in all issues and pull requests.
If the issue is something you think that you can fix, then fork cl3 and create a branch from develop
with a descriptive name.
E.g. a good branch name would be (where issue #42 is the issue you're working on):
git checkout develop
git checkout -b 42-fix-some-bug
Run the unit tests:
cargo test -- --test-threads=1 --show-output
and integration tests:
cargo test -- --test-threads=1 --show-output --ignored
To ensure that you haven't broken anything. Please feel free to add tests, especially where the new test(s) demonstrates a bug that you noticed.
Note: a new test that demonstrates a bug that you've described in an issue is always welcome in a PR, even if you haven't developed the code to fix it yet.
At this point, you're ready to make your changes!
Feel free to ask for help; everyone is a beginner at first.
Your patch should follow the same conventions & pass the same code quality checks as the rest of the project.
I recommend installing and running clippy
:
cargo clippy --all-features
At this point, you should switch back to your develop branch and make sure it's up to date with cl3's develop
branch:
git remote add upstream git@github.com:kenba/cl3.git
git checkout develop
git pull upstream develop
Then update your feature branch from your local copy of master, and push it!
git checkout 42-fix-some-bug
git rebase master
git push --set-upstream origin 42-fix-some-bug
Finally, go to GitHub and make a Pull Request.
Github Actions will then build your PR.
A maintainer will review your PR and determine whether it's Ok to merge it into the develop
branch.
If it is, he/she will approve and merge the PR. If not, they may comment on the PR to request changes before they are willing to approve and merge it. Note: at this stage you should only change the PR to resolve the maintainer's comments. You should not introduce a fantastic new feature that you've just thought of! That should be raised as a new issue instead.
If a maintainer asks you to "rebase" your PR, they're saying that a lot of code has changed, and that you need to update your branch so it's easier to merge.
Github have a good guide about rebasing in Git here's our suggested workflow:
git checkout 42-fix-some-bug
git pull --rebase upstream develop
git push --force-with-lease 42-fix-some-bug