access2rohit edited a comment on issue #20185: URL: https://github.com/apache/incubator-mxnet/issues/20185#issuecomment-822905892
@marcoabreu @szha Thank you for inputs! I am 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`. For these I have to perform manual installation by executing following commands inside `build` folder of its src code: ``` #install libeigen_blas.so cd blas make blas sudo make install #install libeigen_lapack.so cd ../lapack make lapack sudo make install ``` . Unfortunately it doesn't provide all the LAPACK APIs so Its not useful 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 only support at Ops level and model inference. -- 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]
