openvinotoolkit / openvino

OpenVINO™ is an open-source toolkit for optimizing and deploying AI inference
https://docs.openvino.ai
Apache License 2.0
7.29k stars 2.27k forks source link

[Good First Issue] [ARM]: Implement CPU plugin just-in-time emitter for NotEqual operation #27516

Open a-sidorova opened 5 days ago

a-sidorova commented 5 days ago

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?

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 GoogleTest filter:

./bin/[platform]/[build_type]/ov_cpu_func_tests --gtest_filter="*smoke*Comparison*NotEqual*"

Example Pull Requests

Resources

Contact points

@a-sidorova, @dmitry-gorokhov

manojks1999 commented 1 day ago

@a-sidorova , Can I work on this ?

a-sidorova commented 1 day ago

@manojks1999 yes, you can. I assigned you. Feel free to ask if you have any questions 😊