ARM-software / ComputeLibrary

The Compute Library is a set of computer vision and machine learning functions optimised for both Arm CPUs and GPUs using SIMD technologies.
MIT License
2.81k stars 774 forks source link

How to add a new operator to ACL #1071

Closed zxros10 closed 1 year ago

zxros10 commented 1 year ago

Output of 'strings libarm_compute.so | grep arm_compute_version':

Platform: mali gpu

Operating System: linux

Problem description: I need add a new operator to acl. I read the document https://arm-software.github.io/ComputeLibrary/latest/adding_operator.xhtml , but still confused, can you give me a MR or commit about add new operator? Opencl and Neon all need, thanks!

morgolock commented 1 year ago

Hi @zxros10

Please have a look at these patches adding the logical operators both on Neon and CL

https://review.mlplatform.org/c/ml/ComputeLibrary/+/4448 https://review.mlplatform.org/c/ml/ComputeLibrary/+/4438

Hope this helps,

zxros10 commented 1 year ago

Thanks