-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[Good First Issue] [ARM]: Implement CPU plugin just-in-time emitter for GreaterEqual operation #24447
Labels
category: CPU
OpenVINO CPU plugin
good first issue
Good for newcomers
no_stale
Do not mark as stale
platform: arm
OpenVINO on ARM / ARM64
Milestone
Comments
eshoguli
changed the title
[Good First Issue]:
[Good First Issue] [ARM]: Implement CPU plugin just-in-time emitter for GreaterEqual operation
May 9, 2024
eshoguli
added
category: CPU
OpenVINO CPU plugin
platform: arm
OpenVINO on ARM / ARM64
labels
May 9, 2024
.take |
Thank you for looking into this issue! Please let us know if you have any questions or require any help. |
.take |
Thank you for looking into this issue! Please let us know if you have any questions or require any help. |
hey @nashez any help needed? |
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 21, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 Tests are pending to be added Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 22, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 Tests are pending to be added Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 22, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 * Add the EltwiseGreaterEqual entry in the aarch64 executors supported algorithms Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 23, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 * Add the EltwiseGreaterEqual entry in the aarch64 executors supported algorithms Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 25, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 * Add the EltwiseGreaterEqual entry in the aarch64 executors supported algorithms Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 25, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 * Add the EltwiseGreaterEqual entry in the aarch64 executors supported algorithms Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
nashez
added a commit
to nashez/openvino
that referenced
this issue
Sep 26, 2024
* Added a jit_greater_equal_emitter derived class in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreaterEqual in the get_supported_precisions in nodes/kernels/aarch64 * Add the EltwiseGreaterEqual entry in the aarch64 executors supported algorithms Closes: openvinotoolkit#24447 Signed-off-by: Nashez Zubair <[email protected]>
github-merge-queue bot
pushed a commit
that referenced
this issue
Sep 27, 2024
…26727) * Added jit_greater/less_equal_emitter derived classes in aarch64/jit_eltwise_emitters * Created entry Algorithm::EltwiseGreater/LessEqual in the get_supported_precisions in nodes/kernels/aarch64 ### Tickets: - Closes #24447 - Closes #24105 --------- Signed-off-by: Nashez Zubair <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
category: CPU
OpenVINO CPU plugin
good first issue
Good for newcomers
no_stale
Do not mark as stale
platform: arm
OpenVINO on ARM / ARM64
Context
JIT Emitters are part of code generation feature (a.k.a. tensor compiler) that automatically produces highly-efficient optimized fused subgraph binary code. Each emitter implements specific operation from low level OpenVINO dialect.
Prerequisites
Recommended to use ARM CPU based platform for development (e.g. Mac, Raspberry Pi etc). Emulators (e.g. QEMU) is still an option, but not that convenient, especially for final performance evaluation.
What needs to be done?
fp32
GreaterEqual operation JIT emitter for ARM64 SIMD platform. Use OpenVINO CPU plugin JIT emitters documentation and Arm A-profile A64 Instruction Set Architecture documentation for details.Before emitter implementation, please, modify tests to be sure that deveoped functionality is covered by test:
jit
kernel check in element-wise or activation test, the test must fail.Tests
Tests are disabled in default build, so ensure to add
-DENABLE_TESTS=ON
into cmake command.GoogleTest is used for testing. CPU functional test target is ov_cpu_func_tests. You can use two
GoogleTest
filters for element-wise and activation operations:./bin/[platform]/[build_type]/ov_cpu_func_tests --gtest_filter="*smoke*Eltwise*"
./bin/[platform]/[build_type]/ov_cpu_func_tests --gtest_filter="*smoke*Activation*"
Example Pull Requests
Resources
Contact points
@eshoguli, @dmitry-gorokhov
Ticket
CVS-140846
The text was updated successfully, but these errors were encountered: