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
I was trying to rebuild the project to fix my other issue #9 but I couldn't.
I installed emscripten as It is explained in its web, and I tried to run the make file. I got an error about cblas, but I have installed this library in my computer, It should be work. This is the stacktrace:
emcc -std=c++11 -O2 -D__MXNET_JS__ -o libmxnet_predict.js mxnet_predict-all.cc -s DISABLE_EXCEPTION_CATCHING=0 -s EXPORTED_FUNCTIONS="['_MXPredCreate', '_MXPredGetOutputShape', '_MXPredSetInput', '_MXPredForward', '_MXPredPartialForward', '_MXPredGetOutput', '_MXPredFree', '_MXNDListCreate', '_MXNDListGet', '_MXNDListFree']" -s ALLOW_MEMORY_GROWTH=1
WARNING:root:not all asm.js optimizations are possible with ALLOW_MEMORY_GROWTH, disabling those
mxnet_predict-all.cc:24:10: fatal error: 'cblas.h' file not found
#include <cblas.h>
^
1 error generated.
ERROR:root:compiler frontend failed to generate LLVM bitcode, halting
make[1]: *** [libmxnet_predict.js] Error 1
make[1]: Leaving directory `/home/carlos/javascript-workspace/test-mxnet/mxnet.js/mxnet/amalgamation'
/home/carlos/javascript-workspace/test-mxnet/mxnet.js
cp mxnet/amalgamation/libmxnet_predict.js* .
cp: cannot stat ‘mxnet/amalgamation/libmxnet_predict.js*’: No such file or directory
The text was updated successfully, but these errors were encountered:
I was trying to rebuild the project to fix my other issue #9 but I couldn't.
I installed emscripten as It is explained in its web, and I tried to run the
make
file. I got an error about cblas, but I have installed this library in my computer, It should be work. This is the stacktrace:The text was updated successfully, but these errors were encountered: