Does anyone have an example of using the Arm Compute Library for Matrix Multiplication? I don't see any examples in the "examples" folder in the compute library git repo. There appear to be gemm headers, but the documentation is not clear about what the functions are doing, what the parameters are used for, or how to use the functions. Any help or reference would be great.
Check https://github.com/xianyi/OpenBLAS/blob/develop/benchmark/gemm.c
Check here https://github.com/ctuning/ck-math/tree/master/program/acl-sgemm-opencl-exampleand here https://github.com/ctuning/ck-math/tree/master/program/acl-sgemm-neon-example
Thank you. These are very helpful.