[OpenVINO backend] Implements extract_sequences, erfinv, and solve in the math suite#22320
[OpenVINO backend] Implements extract_sequences, erfinv, and solve in the math suite#22320goyaladitya05 wants to merge 2 commits intokeras-team:masterfrom
Conversation
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the OpenVINO backend's mathematical capabilities by adding support for several key operations: Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request implements extract_sequences, erfinv, and solve for the OpenVINO backend. No security vulnerabilities were found. The implementations are functionally correct, and suggestions have been provided to improve the readability and maintainability of extract_sequences and erfinv by refactoring them to use more constants and intermediate variables.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #22320 +/- ##
==========================================
- Coverage 82.73% 76.62% -6.12%
==========================================
Files 594 594
Lines 65732 65793 +61
Branches 10266 10266
==========================================
- Hits 54385 50413 -3972
- Misses 8711 12947 +4236
+ Partials 2636 2433 -203
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
b4d0a48 to
40ac7cb
Compare
40ac7cb to
df9f1ef
Compare
This PR implements the following ops for the math suite of the OpenVINO backend.
extract_sequencesusing a gather based sliding window approach.erfinvvia Winitzki approximation + one Newton-Raphson refinement step using the nativeerfopmath.solveby delegating to the already implementedlinalg.solveexcluded_concrete_tests.txtCloses: openvinotoolkit/openvino/issues/34412