flyingzhao / FaceVerificationAndroid

Face verification with mxnet on android
17 stars 10 forks source link

How mxnet calls openblas #3

Open Zhaoxuyu opened 3 years ago

Zhaoxuyu commented 3 years ago

Hi, Thank you for your work.

I have compiled jni_libmxnet_predict.so and libopenblas_armv7p-r0.3.5.so.

In JAVA program, I call MXNET function.

The model can be loaded successfully, but when execute Forword(), it give error"linalg_batch_gemm not implemented by mxnet for cpu, needs cblas!"

I guess it is because in JAVA code, it can find mxnet function, but mxnet function can not find openblas, is it correct?

How do you use openblas for mxnet for Android?