Build error #19519
-
Hi, I try to build the mxnet with make command follow the instruction within this link: I am using mxnet 1.6.0 source code running on ubuntu 20.04 LTS version. I did not change any thing within the config.mk file.(All default options): My PC is only CPU platform. However, after I cd into the root of mxnet folder and try to compile with make command. Error shows up like this.
Do I need to use cmake instread My config.mk file.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
From this error message, it looks like the linker wasn't able to find your atlas library: I would recommend to use openblas instead. To do that, you can:
|
Beta Was this translation helpful? Give feedback.
-
Thank you.
I have already make it.
Best Regrads,
johnny
…On Fri, Nov 13, 2020 at 10:10 AM Sheng Zha ***@***.***> wrote:
From this error message, it looks like the linker wasn't able to find your
atlas library: /usr/bin/ld: cannot find -lcblas
I would recommend to use openblas instead. To do that, you can:
- change USE_BLAS = atlas to USE_BLAS = openblas
- install libopenblas-dev using apt
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#19519 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANDGLBZ3FC4VNUGOI7LAEDTSPVD5DANCNFSM4TS3TL6A>
.
--
Yuanjun Dai (he/him)
P.hd
Department of Computer and Data Sciences
Case Western Reserve University
Phone: (216)-235-8330
Office: Glennan 505
|
Beta Was this translation helpful? Give feedback.
From this error message, it looks like the linker wasn't able to find your atlas library:
/usr/bin/ld: cannot find -lcblas
I would recommend to use openblas instead. To do that, you can:
USE_BLAS = atlas
toUSE_BLAS = openblas
libopenblas-dev
usingapt