You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ 3%] Performing download step for 'extern_mklml'
gzip: stdin: unexpected end of file
tar: Child returned status 1
tar: Error is not recoverable: exiting now
make[2]: *** [third_party/mklml/src/extern_mklml-stamp/extern_mklml-download] Error 2
make[1]: *** [CMakeFiles/extern_mklml.dir/all] Error 2
make: *** [all] Error 2
使用最新代码 commit 31632a6 进行编译,发现mklml包下载不了。
使用mklml.cmake中的DOWNLOAD_COMMAND(
wget --no-check-certificate -qO- ${MKLML_URL}
)手动下载,并去掉-q开关:错误是
File name too long
,即输出的文件名过长因此改成
wget --no-check-certificate ${MKLML_URL} -c -O ${MKLML_VER}.tgz
即可。-q
打开log日志来观察下载情况 @wangkuiyi-c
断点续传功能,以防突然断网。The text was updated successfully, but these errors were encountered: