access2rohit commented on issue #20185: URL: https://github.com/apache/incubator-mxnet/issues/20185#issuecomment-822905892
@marcoabreu @szha Thank you for inputs! We are able to build natively as the ARM team suggested that its more performant this way instead of cross-compilation. Eigen does install headers only but it also has `libeigen_blas.so` and `libeigen_lapack.so`. Unfortunately it doesn't provide all thr LAPACK APIs so Its not usedul for LAPACK: https://gitlab.com/libeigen/eigen/-/issues/2221#note_554042309 The file `libeigen_blas.so` does have APIs for `gemm`, `syrk`, `trsm` and `trmm`. But these are not CBLAS APIs but BLAS APIs so currently modifying these inside the code to evaluate the performance of its BLAS support only at Ops level and model level. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
