We encourage anyone who wants to contribute to submit Issues and Pull Requests. We will help review these for proper alignment with the Level Zero Specification.
- C++14 maximum support
- Avoid C Arrays, replace with
std::array<>
/std::vector<>
- Avoid "magic numbers"
- Avoid C-style memory allocations in favor of C++
- Use
nullptr
instead ofNULL
- Don't add
void
to empty argument lists - Use
std::unique_ptr
in place ofstd::auto_ptr
-
The functionality in the Level Zero Loader and layers which follow the Level Zero spec must follow these naming conventions:
-
If the contributions are adding new functionality unique to the Level Zero Loader (ie not Level Zero Spec related):
- Level Zero Loader specific APIs must have the prefix:
zel
- see here for examples: Loader API Documentation
- Level Zero Loader specific APIs must have the prefix:
As part of each Level Zero specification update, .mako scripts are updated which generate the code for the Level Zero Loader and layers. When one contributes updates to the Level Zero Loader or Layers, one must update the code in Level Zero Loader Mako Scripts to ensure that the new code is not lost in the next specification update.
To generate the code from the scripts, run the following commands:
- Clone the specification repo:
git clone https://github.com/oneapi-src/level-zero-spec.git level-zero-spec
- Checkout the specification version in the specification repo, for example:
cd level-zero-spec
git checkout v1.5
- Generate the specification JSON file:
cd ./scripts
python3 ./run.py --debug '--!html' '--!rst' '--!build' --ver 1.5
- Execute the json2src script in the level-zero repo with the input.json in the specification repo with the corresponding spec version, for example:
./scripts/json2src.py --ver 1.5 --api-json <path to level-zero-spec checkout>/scripts/input.json .
These scripts update the code with what would be generated in the next specification update.
Quality Code Review of the oneAPI Level Zero Loader & Layers is important for all Maintainers and Contributors to ensure that quality updates are added to the Loader and Layers for customers of oneAPI Level Zero.
When performing a code review please refer to this checklist to guide your comments:
- Does the code follow C++ Coding Standards? C++ Coding Standards.
- Does the code follow the Level Zero naming conventions? Naming Conventions.
- Does the code follow the Level Zero specification? See here for the latest spec: https://spec.oneapi.io/level-zero/latest/index.html.
- Is the code for the Validation Layer? Please review the following: Validation Layer README.
- Is the code for the Tracing Layer? Please review the following: Tracing Layer README.
- Is the code "Vendor & Platform agnostic"? ie Are the changes in the loader or in the layers ignorant of the implementation in the L0 drivers?
- Is the Code Modular or can the code be Modular? ie Can the code be added to common functions used in loader or layer common functions or is it for a specific usecase?
- Can the code handle Multiple Driver or Device environments? Verify that the changes work within the Intercept Layer which is used when multiple drivers are present and that support works across devices.
- Has the code updated the templates? see here Generating Level Zero Loader and Layer files from scripts
Please use the sign-off line at the end of your patch. Your signature certifies that you wrote the patch or otherwise have the right to pass it on as an open-source patch. To do so, if you can certify the below (from developercertificate.org):
Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
660 York Street, Suite 102,
San Francisco, CA 94110 USA
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
(b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.
Then add a line to every git commit message:
Signed-off-by: Kris Smith <kris.smith@email.com>
Use your real name (sorry, no pseudonyms or anonymous contributions).
If you set your user.name
and user.email
git configs, you can sign your
commit automatically with git commit -s
.