-
Notifications
You must be signed in to change notification settings - Fork 225
RFC: Add Pull Request rules to oneDAL #3264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: rfcs
Are you sure you want to change the base?
Changes from all commits
7bcc264
954e520
5f62269
9c6b27b
d99ab66
43cf473
5c46a13
366a45c
742e313
12e2a07
38ed427
81d87c1
5eac29b
2f750d8
4a3be40
8f7f2d3
18fffc1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,207 @@ | ||||||||||
| # oneDAL Pull Request Rules | ||||||||||
|
|
||||||||||
| ## Introduction | ||||||||||
|
|
||||||||||
| Generating, reviewing and merging code in oneDAL are key pillars in providing | ||||||||||
| a high quality and performant product. The oneDAL codebase is both large and | ||||||||||
| intricate requiring domain knowledge and precision. In order to guarantee these | ||||||||||
| qualities in oneDAL for all contributors, a set of rules should be added. | ||||||||||
|
|
||||||||||
|
|
||||||||||
| ## Proposal | ||||||||||
|
|
||||||||||
| This enumerates in detail the aspects and proceedures necessary to getting a | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Suggested change
Run a spell checker over this. If you are on a unix OS, something like aspell works quite well for text files. |
||||||||||
| Pull Request (PR) merged into oneDAL. This (as listed in the preamble below) | ||||||||||
| will assist new developers as well as standardize for all developers in | ||||||||||
| completing the necessary steps. The goal would be to add this to oneDAL's | ||||||||||
| public documentation and refer to it in the template (as a link) to all future | ||||||||||
| Pull Requests to oneDAL. | ||||||||||
|
|
||||||||||
| # Text to be added: | ||||||||||
|
|
||||||||||
| ## Preamble: | ||||||||||
|
|
||||||||||
| This is the rules for merging PRs into the oneDAL code base on Github. This | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far oneDAL and scikit-learn-intelex have interdependency it would make sense to clarify this aspect in greater details, especially for cases that would be involving modifications on both repos |
||||||||||
| gives the minimum requirements for PR submitters and reviewers. The goal is | ||||||||||
| to enumerate the steps for better efficiency in oneDAL development. | ||||||||||
|
|
||||||||||
| ## Section 1: Opening a PR, Ready for Review | ||||||||||
|
|
||||||||||
| 1. PR Template and Task Checklist | ||||||||||
| * All PRs must use the provided template, including the task checklist. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's mention checklist scope definition - currently it's assume people will be removing not relevant checkboxes. |
||||||||||
| 2. Draft PRs | ||||||||||
| * PRs should initially be opened as Draft. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this can be skipped in many cases, like changes to readme files and docs.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree that for many cases this would be optional |
||||||||||
| 3. Marking PRs as Ready for Review | ||||||||||
| * Before marking a PR as Ready for Review: | ||||||||||
| * All tasks in the checklist must be completed. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's missing the part about removing inapplicable lines from the checklist. |
||||||||||
| * Features and changes must be fully implemented. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is usually not the case for large features - things are split into multiple parts, leaving some things out of the initial PRs. And some (particularly around non-x86 builds) remain yet unimplemented.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thats a good point. I would like to improve speed to merge, and large PRs should be discouraged. How would you recommend we re-word this?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would suggest that something is ready to go in if it either passes existing tests (where changing current functionality), or passes new tests added for new functionality. Maybe wording like the following? I think that follows on from the next bullet point about CI passing, and should come after it. With those changes to the wording, that satisfies as what I see as a 'fully implemented' change. One that does not break existing functionality, and that proves (apart from exceptional cases) that new code works. |
||||||||||
| * Both private and public CI pipelines must pass, or clear justification for any | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i would add large disclaimer here - as scopes of CI's are different and changing overtime. So currently yes things depend on internal Intel CI, but lot of stuff already enabled in public. Ideally we should be able to track this separately so no changes to overall PR rules would be required |
||||||||||
| failing tests must be provided. | ||||||||||
| 4. Reverting a PR Back to Draft | ||||||||||
| * Once a PR is converted from Draft to Ready for Review, it should only be | ||||||||||
| reverted to Draft if: | ||||||||||
| * Significant changes or new feature requests arise during the review. | ||||||||||
| * The requested changes depend on future dependencies (e.g., waiting for a new | ||||||||||
| release) or require substantial time to implement. | ||||||||||
| * Other blockers prevent the changes from being merged into the current main branch. | ||||||||||
|
|
||||||||||
| ## Section 2: General Rules | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would also add line one code ownership - new code contributions shouldn't violate license rights nether on source where they are taken, nor oneDAL license. |
||||||||||
|
|
||||||||||
| 1. A PR cannot introduce new failures in GitHub checks (public CI) (i.e. stays | ||||||||||
| green) or new failures in private CI (pre-commit\*). | ||||||||||
| 2. Removal of CI tests can only be allowed with the written and documented | ||||||||||
| consent\*\* of the code owners in extreme circumstances. | ||||||||||
| 3. Code which causes new CI failures or problems should apply additional | ||||||||||
| fixes within a day, otherwise the PR should be reverted. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This timeframe of 1 day is oftentimes not met, due to e.g. other fix PRs taking longer to review, CIs having issues, and similar.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thats a failure on the team in my opinion. Reviewing and code velocity are deplorably slow (in my opinion, you are one of the only people doing it right).
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i would probably word this around that with different scopes of validation we might be getting new failures that are not discovered within PR scopes. As larger scopes have different schedules it might happen that problems would be reported hours or even days after PR integration. So i would say 1 day is a good target that we could use from point of issue discovery. In case we understand that 1 day(24 hours) fix is not feasible we should discuss next steps and timelines. Ideally reverting change would be preferable solution, but there might be cases then this would be challenging - such cases should be discussed on exception bases. Also i would put expectation that PR owner have responsibility for fixing unintentionally caused failures. Another thing - not all failures would be equally critical - for example while CI/nightly failures are critical i would argue that coverity fixes should be recovered within day - probably longer timeframe is acceptable there. |
||||||||||
| 4. Code scans often do not run with PRs, as such merged PRs should not increase | ||||||||||
| the number of issues for the Intel internal code scans\*\*\*, and may be | ||||||||||
| grounds for a reversion. | ||||||||||
| 5. A merged PR which causes a code scan failure should be fixed before the next | ||||||||||
|
Comment on lines
+57
to
+59
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wouldn't be focusing on Intel internal scans and would write this as generic code scans. Some of them are public, while others not yet. I think from internal scans at this point we have Coverity for oneDAL - which will be migrated to public instance. |
||||||||||
| scheduled code scan can be reverted. | ||||||||||
| 6. A designated person is assigned (for a determined period of time), who | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry - don't get how this works, what is intent here? |
||||||||||
| determines which PR was responsible for the failure. | ||||||||||
| 7. All PRs must have a label describing the purpose. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we consider auto labeling besides of the requirement itself? |
||||||||||
| 8. Suggested labels are: | ||||||||||
| * bug (Section 3: Bug Fix) | ||||||||||
| * dependencies (Section 4: Dependencies) | ||||||||||
| * docs (Section 5: Documentation) | ||||||||||
| * enhancement (Section 6: Feature) | ||||||||||
| * infra (Section 7: Infrastructure) | ||||||||||
| * perf (Section 8: Performance) | ||||||||||
| * testing (Section 9: Tests) | ||||||||||
| * API/ABI breaking change (Section 10: API/ABI changes) | ||||||||||
| 9. Associated reviewers from CODEOWNERS must be included in review based on the | ||||||||||
| purpose/type of the PR, for example: | ||||||||||
| * Cases which require special consideration - CI failures/issues | ||||||||||
| * Changes to public facing header files etc. | ||||||||||
| * Changes to build structure (e.g. makefiles, bazel. etc.) | ||||||||||
| 11. Commits should follow commit message rules. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't this automated by github when squashing? |
||||||||||
| 12. During a code-freeze period (before drop), PRs should only be pulled in by | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think there should be no code-freeze period and release branches should be created instead straight away. Also there is no drop in terms of public releases. It might be better to just talk in form of release branches being restricted with commits there + we already have this implemented with github permissions |
||||||||||
| main maintainers. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we could replace this with release management group - https://github.com/uxlfoundation/oneDAL/blob/main/MAINTAINERS.md#release-management |
||||||||||
| 13. An approval should be given with the expectation to merge, use best | ||||||||||
| judgement in reviewing and approving PRs (get help as when not confident). | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Suggested change
|
||||||||||
| 14. The submitter is responsible for the maintenance (including closing) of | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i would put this broader as submitter is responsible for pushing PR towards integration |
||||||||||
| PRs. | ||||||||||
| 15. The submitter is responsible for guiding, answering, scheduling, and | ||||||||||
| aligning the correct reviewers for a PR (setting up meetings, collecting | ||||||||||
| information, etc.). | ||||||||||
| 16. The person who merges a PR is expected to understand the consequences, | ||||||||||
| especially with respect to approvals and review (e.g. a single approval may | ||||||||||
| not be sufficient for merge). | ||||||||||
| 17. The reviewer should mark comments as resolved unless PR author directly | ||||||||||
| addresses their comment with code change | ||||||||||
| 19. To avoid overuse of "will save for follow-up PR"/"not in the scope of PR" | ||||||||||
| the author is responsible resolving with reviewer the follow up steps in | ||||||||||
| detail. | ||||||||||
| 20. Changes to these rules must be proposed following the RFC process. | ||||||||||
| 21. Additional private CI runs can be requested. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. would generalize this - additional validation/measurements |
||||||||||
| 22. While oneDAL is open source, hardware IP should be protected especially in | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we could remove this - those are not generic expectation on oneDAL contributors but corporations specific expectations that are different for different companies |
||||||||||
| public forums like Slack and GitHub. | ||||||||||
| 23. An admin can wipe a review or otherwise change a PR as necessary. (Reviewer | ||||||||||
| unavailable to re-review, etc.) | ||||||||||
| 24. Description must describe the change and reasoning behind it. | ||||||||||
| 25. These are not hard and fast and can be changed in cases that warrant it. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks it cut out from broader context |
||||||||||
| 26. When merging, use the title of the PR and not of the commit(s). | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we check/validate this? |
||||||||||
|
|
||||||||||
| ## Section 3: Bug Fix | ||||||||||
|
|
||||||||||
| 1. PR Title must include the associated algorithm or oneDAL code feature and | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lots of fixes are for things not in algorithms, like CIs, docs, etc. Many fies are for multiple algorithms at a time too.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Its under section 3: Bug Fix, ci docs etc. should have other labels that should be added and those rules will apply. |
||||||||||
| the name of the bug. | ||||||||||
| 2. Description must describe the issue observed and how the fix solves the | ||||||||||
| bug/issue. | ||||||||||
| 3. If the bug fix is associated with an issue raised on Github, it must be | ||||||||||
| linked. | ||||||||||
| 4. If the bug fix solves the Github issue and is merged, the Github issue | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I thought we had a policy of closing only after the fix reaches a release.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thoughts @napetrov @syakov-intel ?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the rule is more generalized - bug should be closed whenever fix could be used. Some stuff get fixed with commit itself, while other changes would require release. Also it make sense to keep bug open so we will not be getting multiple submissions on same problem. |
||||||||||
| should be closed. | ||||||||||
| 5. Fixes which solves a CI failure must be listed for verification by the | ||||||||||
| reviewer. | ||||||||||
|
|
||||||||||
| ## Section 4: Dependencies | ||||||||||
|
|
||||||||||
| 1. Dependency PRs not handled by automation should be handled per the | ||||||||||
| guidance of reviewer with knowledge of the change (e.g. code owner). | ||||||||||
| 2. Questions about dependency changes can/should be addressed to the team at | ||||||||||
| large. | ||||||||||
|
|
||||||||||
| ## Section 5: Documentation | ||||||||||
|
|
||||||||||
| 1. The PR title must include the related feature and/or DAAL/oneDAL component. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oftentimes they are general, like changes in the shell scripts.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This applies to changes with label "documentation".
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, and the docs are built through shell scripts. |
||||||||||
| 2. The documentation must follow DAAL or oneDAL documentation guidelines. | ||||||||||
|
|
||||||||||
| ## Section 6: Feature | ||||||||||
|
|
||||||||||
| 1. Features which change (not just add to) the user-facing API or ABI or change | ||||||||||
| dependencies in a meaningful way should have an RFC (see section 10) | ||||||||||
| 2. Features in oneDAL must follow oneDAL conventions (especially for API and | ||||||||||
| structure). | ||||||||||
| 3. Features in DAAL must follow DAAL conventions. | ||||||||||
| 4. New features must have associated new tests. | ||||||||||
|
|
||||||||||
| ## Section 7: Infrastructure | ||||||||||
|
|
||||||||||
| 1. As infra has wide-ranging impact, code review should be stricter and closely | ||||||||||
| reviewed by those knowledgeable. | ||||||||||
| 2. Those which impact a specific ISA should have a representative with domain | ||||||||||
| knowledge review those changes. | ||||||||||
|
|
||||||||||
| ## Section 8: Performance | ||||||||||
|
|
||||||||||
| 1. Performance benchmarks must include scikit-learn_bench\*\*\*\*\* if | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i would generalize this as appropriate benchmark results. Not everything could be covered with scikit-learn_bench. |
||||||||||
| the algorithm is included or to be included in scikit-learn-intelex. | ||||||||||
| 2. Performance benchmarks must be provided to reviewers via email. | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this unnecessary ? i think any channel would work, even if results would be shared within PR itself |
||||||||||
| 3. Code with SYCL-specific implementations should include specific benchmarking | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i think this should be generalized that based on changes corresponding HW platforms should be chosen. |
||||||||||
| for associated GPU hardware. | ||||||||||
| 4. Relative improvements in performance should be listed in the PR description. | ||||||||||
| 5. Any degradation in performance should be discussed before merging. | ||||||||||
|
|
||||||||||
| ## Section 9: Tests | ||||||||||
|
|
||||||||||
| 1. The PR title should include the related feature or components. | ||||||||||
| 2. Tests should be added for new features (ideally in the same PR). | ||||||||||
| 3. Ideally, the PR should refer to the feature introduction/or latest change | ||||||||||
| to feature PR. | ||||||||||
|
|
||||||||||
| ## Section 10: API/ABI changes | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Potentially it worth adding note on declaring deprecations - those can be done at any time and might be we need entire section going through details there |
||||||||||
|
|
||||||||||
| 1. Changes to the API/ABI should be specifically scheduled for merging at | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we start using version macros for this instead? It'd require additional testing infrastructure though.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thoughts on how we do API/ABI changes @napetrov @syakov-intel ?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @david-cortes-intel could you elaborate on version macros?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. overall i would rephrase this as API/ABI breaking changes are only possible with major version increments and thus should be planned for such version release.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In some cases, it should be possible to use |
||||||||||
| specific times determined by the main maintaners of oneDAL. | ||||||||||
| 2. Changes to the API/ABI must be described in detail in the description of the | ||||||||||
| pull request. | ||||||||||
| 3. Information about the API/ABI change should be communicated in some fashion | ||||||||||
| to users of oneDAL. | ||||||||||
| 4. Changes in dependency API/ABIs should be noted, and may be exempt from these | ||||||||||
| rules. | ||||||||||
| 5. In most cases, and API/ABI breaking change should first be discussed in an | ||||||||||
| RFC process. | ||||||||||
|
|
||||||||||
| ### Notes: | ||||||||||
|
|
||||||||||
| \* Comment with text '/intelci: run' on the Github PR will automatically run | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this also applied to comments posted by external contributors?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is related to note on how to run private CI, should be useful for external contributors on how to trigger it.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @icfaust Does the internal CI trigger if a random user (who is not in the intel/uxl orgs) posts the comment?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think how to run CI section should be moved out of proposal and referenced instead. it would be modified more frequently than PR rules themself.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
no, it would be started only by folks working at Intel |
||||||||||
| the CI, labeled as 'pre-commit'. | ||||||||||
|
|
||||||||||
| \*\* Documented consent must mean that developers should be able to | ||||||||||
| independently find and understand CI regressions via some medium outside the PR | ||||||||||
| itself (for example confluence, email chain, etc.) | ||||||||||
|
|
||||||||||
| \*\*\* Some code scans can be found in the DAAL CI_DAAL Run, some may only run | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not clear what "DAAL CI_DAAL Run" mean here |
||||||||||
| after integration. | ||||||||||
|
|
||||||||||
| \*\*\*\* Cleanly means without regression. | ||||||||||
|
|
||||||||||
| \*\*\*\*\* scikit-learn_bench report structure is the standard, but other runs | ||||||||||
| can be used at reviewers discretion. | ||||||||||
|
|
||||||||||
| \*\*\*\*\*\* direct links to the run should be modified to refer to | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is just internal expectation, not generic one |
||||||||||
| http://intel-ci.intel.com/ and not internal Intel servers. | ||||||||||
|
|
||||||||||
| # end of text | ||||||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this line can be left out.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As the text of the documentation is embedded in the RFC, I needed to signify when the rules are complete, and the rest of the RFC (as per the RFC rules) can be included, it will be dropped when added to the documentation. |
||||||||||
|
|
||||||||||
| ## Open Questions | ||||||||||
| How to relate to non-Intel parties in the case some of special requirements on | ||||||||||
| impacts to this hardware. | ||||||||||
| Additions or removals to the rules as per discussion. | ||||||||||
|
|
||||||||||
| ## Next steps: | ||||||||||
| Upon acceptance, add to the oneDAL documents a web page under `contributing` for | ||||||||||
| reference containing this text. Secondly add to the PR template a link to this new | ||||||||||
| page for easy access. | ||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.