should add these details on a page as
> well so that users are aware of it before they report any performance
> results..
>
> Thanks.
>
> Deb
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
>
fsets(Native
> Method)
> at
> com.github.fommil.netlib.NativeSystemBLAS.dgemm(NativeSystemBLAS.java:100)
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com/Re-Turn-BLAS-on-MacOSX-tpp5648.html
> Sent from the Apache Spark User List mailing list archive at Nabble.com.
com.github.fommil.netlib.NativeSystemBLAS.dgemm(NativeSystemBLAS.java:100)
--
View this message in context:
http://apache-spark-user-list.1001560.n3.nabble.com/Re-Turn-BLAS-on-MacOSX-tpp5648.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.
Hi,
How do I load native BLAS libraries on Mac ?
I am getting the following errors while running LR and SVM with SGD:
14/05/07 10:48:13 WARN BLAS: Failed to load implementation from:
com.github.fommil.netlib.NativeSystemBLAS
14/05/07 10:48:13 WARN BLAS: Failed to load implementation from:
com.g
String;IIID[DII[DIID[DII)V
> at com.github.fommil.netlib.NativeSystemBLAS.dgemm_offsets(Native
> Method)
> at
> com.github.fommil.netlib.NativeSystemBLAS.dgemm(NativeSystemBLAS.java:100)
>
>
>
> --
> View this message in context:
> http://apache-spark-user-list.1001560.n3.nabble.com
Those are warning messages instead of errors. You need to add
netlib-java:all to use native BLAS/LAPACK. But it won't work if you
include netlib-java:all in an assembly jar. It has to be a separate
jar when you submit your job. For SGD, we only use level-1 BLAS, so I
don't think native code is call
Hi Debasish,
In https://github.com/apache/spark/blob/master/docs/mllib-guide.mdDependencies
section, the document talks about the native blas dependencies
issue.
For netlib which breeze uses internally, if the native library isn't found,
the jblas implementation will be used.
Here is more detail