summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/compute/CONTRIBUTING.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/compute/CONTRIBUTING.md
parentInitial commit. (diff)
downloadceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz
ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/compute/CONTRIBUTING.md')
-rw-r--r--src/boost/libs/compute/CONTRIBUTING.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/boost/libs/compute/CONTRIBUTING.md b/src/boost/libs/compute/CONTRIBUTING.md
new file mode 100644
index 000000000..d8b5fa23c
--- /dev/null
+++ b/src/boost/libs/compute/CONTRIBUTING.md
@@ -0,0 +1,46 @@
+# Contributing to Boost.Compute #
+
+## Reporting Issues ##
+
+We value your feedback about issues you encounter. The more information you
+provide the easier it is for developers to resolve the problem.
+
+Issues should be reported to the [issue tracker](
+https://github.com/boostorg/compute/issues?state=open).
+
+Issues can also be used to submit feature requests.
+
+## Submitting Pull Requests ##
+
+Base your changes on `master` but submit your pull-request to `develop`. This
+can be changed by clicking the "Edit" button on the pull-request page. The
+develop branch is used for integration and testing of changes before merging
+into the stable `master` branch.
+
+Please try to rebase your changes on the current master branch before
+submitting. This keeps the git history cleaner and easier to understand.
+
+## Coding Style ##
+
+* Indentation is four-spaces (not tabs)
+* Try to keep line-length under 80 characters
+* Follow the STL/Boost naming conventions (e.g. lower case with underscores)
+* When in doubt, match the style of existing code
+* Otherwise, do whatever you want
+
+Also see the [Boost Library Requirements]
+(http://www.boost.org/development/requirements.html)).
+
+## Running Tests ##
+
+To build the tests you must enable the `BOOST_COMPUTE_BUILD_TESTS` option in
+`cmake`. The tests can be run by executing the `ctest` command from the build
+directory.
+
+Please report any tests failures to the issue tracker along with the test
+output and information on your system and compute device.
+
+## Support ##
+
+Feel free to send an email to kyle.r.lutz@gmail.com with any problems or
+questions.