This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Neon DSP optimize for AI

Can the Neon DSP be used to optimize the AI algorithm? Does ARM provide an open source implementation ?

Parents
  • If I assume that by AI algorithms you mean CNN, the basic building block for that is matrix multiply.

    You can find neon based matrix multiply implementations as part of the arm performance libraries, openblas, or blis just to name a few.

    You can then use open source software like openCV and link against your favorite blas implementation.

    Suggested google terms: openCV , blas

Reply
  • If I assume that by AI algorithms you mean CNN, the basic building block for that is matrix multiply.

    You can find neon based matrix multiply implementations as part of the arm performance libraries, openblas, or blis just to name a few.

    You can then use open source software like openCV and link against your favorite blas implementation.

    Suggested google terms: openCV , blas

Children