Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 3.68 KB

CONTRIBUTING.md

File metadata and controls

51 lines (29 loc) · 3.68 KB

Contributing Guide

Thank you for your interest in contributing to Enzyme! There are multiple ways to contribute, and we appreciate all contributions. In case you have questions, you can either use the Discourse or the #enzyme channel on Discord.

Ways to Contribute

Bug Reports and Feature Requests

If you are working with Enzyme, and run into a bug, or require additional features, we definitely want to know about it. Please let us know by either creating a GitHub Issues, or starting a thread in Enzyme's LLVM Discourse Category.

Bug Fixes

If you are interested in contributing code to Enzyme, issues labeled with the good-first-issue keyword in the GitHub Issues are a good way to get familiar with the code base. If you are interested in fixing a bug please comment on it to let people know you are working on it.

The easiest way to explore code in Enzyme is by using our Compiler Explorer instance.

If you are unable to reproduce the bug in Compiler Explorer, try to reproduce and fix the bug with upstream LLVM. Start by building LLVM from source as described in Installation and use the built binaries to reproduce the failure described in the bug.

Language Integrations

In case you are interested in integrating Enzyme with a programming language which compiles to the LLVM IR, we encourage you to take a look at the Language Frontend Guide, and post on the Discourse Category to let people know that you are working on it.

How to Submit a Pull Request

Once you have a pull request ready, it is time to submit it. The pull request should:

  • Include a small unit test
  • Conform to the LLVM Coding Standards. You can use the clang-format-diff.py or git-clang-format tools to automatically format your patch properly.
  • Not contain any unrelated changes
  • Be an isolated change. Independent changes should be submitted as separate pull requests as this makes reviewing easier.

Before sending a pull request for review, please also try to ensure it is formatted properly. We use clang-format for this, which has git integration through the git-clang-format script. On some systems, it may already be installed (or be installable via your package manager). If so, you can simply run it – the following command will format only the code changed in the most recent commit:

git clang-format HEAD~1

Note that this modifies the files, but doesn't commit them - you'll likely want to run

git commit --amend -a

in order to update the latest commit with all pending changes.

If you don't already have clang-format or git-clang-format installed on your system, the clang-format binary will be built alongside clang, and the git integration can be run form clang/tools/clang-format/git-clang-format.

Code of Conduct

As an LLVM Incubator Project we expect all participants to abide by the LLVM Community Code of Conduct.