[GitHub] [incubator-mxnet] larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas?

2019-10-28 Thread GitBox
larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas? URL: https://github.com/apache/incubator-mxnet/issues/16557#issuecomment-547146879 in cmake you can use `add_library` This is

[GitHub] [incubator-mxnet] larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas?

2019-10-28 Thread GitBox
larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas? URL: https://github.com/apache/incubator-mxnet/issues/16557#issuecomment-547146598 You can see how libraries are added in the CMakefile, for make just link with your library. Let me know if

[GitHub] [incubator-mxnet] larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas?

2019-10-25 Thread GitBox
larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas? URL: https://github.com/apache/incubator-mxnet/issues/16557#issuecomment-546532257 Hi @knjwhn I think you want to link mxnet with your library and call the function in the dispatcher for the

[GitHub] [incubator-mxnet] larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas?

2019-10-22 Thread GitBox
larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas? URL: https://github.com/apache/incubator-mxnet/issues/16557#issuecomment-545088056 could you clarify your question? You mean there's two functions with the same name when linking? -

[GitHub] [incubator-mxnet] larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas?

2019-10-21 Thread GitBox
larroy commented on issue #16557: Where is the place that mxnet call cblas_gemm if I use openblas? URL: https://github.com/apache/incubator-mxnet/issues/16557#issuecomment-544745686 Hi @knjwhn The blas calls are generated with some preprocessor macro magic as you can see from here