Skip to content

Commit

Permalink
doc: update CONTRIBUTING.md with copyright guidelines (#3018)
Browse files Browse the repository at this point in the history
* doc: update `CONTRIBUTING.md` with copyright guidelines

* docs: updare `CONTRIBUTING` with `copyright` guidlines
  • Loading branch information
homksei authored Dec 13, 2024
1 parent 9a8d987 commit 1a6c79f
Showing 1 changed file with 31 additions and 3 deletions.
34 changes: 31 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,35 @@ In the source code of the algorithms, oneDAL does not use threading primitives d

oneDAL uses `Doxygen` for inline comments in public header files that are used to build the API reference and `reStructuredText` for the Developer Guide. See [oneDAL documentation](https://uxlfoundation.github.io/oneDAL/) for reference.

---
**Note:** oneDAL is licensed under [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0). By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms.
## License and Copyright

---
oneDAL is licensed under [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0). By contributing to the project, you agree to the license and copyright terms therein and release your contribution under these terms.

### Copyright Guidelines for Contributions
Each new file added to the project must include the following copyright notice:
```
Copyright contributors to the oneDAL project
```
Here is what a copyright header for C/C++ code would look like:
```
/*
* Copyright contributors to the oneDAL project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
```
When modifying an existing file with an Intel Corporation copyright notice, do not remove the original notice. Simply add your own copyright notice with the following line:
```
Copyright <YYYY> Intel Corporation
Copyright contributors to the oneDAL project
```

0 comments on commit 1a6c79f

Please sign in to comment.