Matrix addition CULA, MAGMA

Hello, i would like to know if there is a function that implement the addition of two matrices in CULA or MAGMA…
I have been seeing GEMM but i think using it would not be efficient enough for me…

I need to find the solution to the ricatti´s equation so i have to solve linear equations with matrices. I think using a library is the best solution if there is such functions implemented yet.

Thanks for your reply!

Look for saxpy and set the scaling factor α to one. Adding two M×N matrices is the same as adding two vectors of length M*N.

Thanks!