breeze
:maven 依赖
<dependency>
<groupId>org.scalanlp</groupId>
<artifactId>breeze_2.10</artifactId> <!-- or 2.11 -->
<version>0.11.2</version>
</dependency>
<dependency>
<groupId>org.scalanlp</groupId>
<artifactId>breeze-natives_2.10</artifactId> <!-- or 2.11 -->
<version>0.11.2</version>
</dependency>
---------------------------------------------------------------------------------------------------
OpenBLAS
:下载
http://netix.dl.sourceforge.net/project/openblas/v0.2.15/OpenBLAS-v0.2.15-Win64-int32.zip
解压到D:\Develop\OpenBLAS\OpenBLAS-v0.2.15-Win64-int32\bin
http://netix.dl.sourceforge.net/project/openblas/v0.2.15/mingw64_dll.zip
解压到D:\Develop\OpenBLAS\OpenBLAS-v0.2.15-Win64-int32\bin
:添加该路径到PATH中
---------------------------------------------------------------------------------------------------
NetLib
:maven 配置
<dependency>
<groupId>com.github.fommil.netlib</groupId>
<artifactId>all</artifactId>
<version>1.1.2</version>
<type>pom</type>
</dependency>
:需要
libblas3.dll(拷贝libopenblas.dll为其名)
liblapack3.dll(拷贝libopenblas.dll为其名)
libgfortran-1-3.dll(mingw64_dll.zip)
libquadmath-0.dll(mingw64_dll.zip)
libgcc_s_seh-1.dll(mingw64_dll.zip)
:测试NetLib依赖安装
:未添加依赖DLL到PATH时启动日志
三月 08, 2016 6:48:40 下午 com.github.fommil.netlib.BLAS <clinit>
警告: Failed to load implementation from: com.github.fommil.netlib.NativeSystemBLAS
三月 08, 2016 6:48:41 下午 com.github.fommil.jni.JniLoader liberalLoad
信息: successfully loaded C:\Users\bmb\AppData\Local\Temp\jniloader5403646722246214183netlib-native_ref-win-x86_64.dll
三月 08, 2016 6:48:41 下午 com.github.fommil.netlib.LAPACK <clinit>
警告: Failed to load implementation from: com.github.fommil.netlib.NativeSystemLAPACK
三月 08, 2016 6:48:41 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_ref-win-x86_64.dll
三月 08, 2016 6:48:41 下午 com.github.fommil.netlib.ARPACK <clinit>
警告: Failed to load implementation from: com.github.fommil.netlib.NativeSystemARPACK
三月 08, 2016 6:48:41 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_ref-win-x86_64.dll
:添加依赖DLL到PATH时启动日志
三月 08, 2016 7:00:45 下午 com.github.fommil.jni.JniLoader liberalLoad
信息: successfully loaded C:\Users\bmb\AppData\Local\Temp\jniloader1109347605842521850netlib-native_system-win-x86_64.dll
三月 08, 2016 7:00:45 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_system-win-x86_64.dll
三月 08, 2016 7:00:45 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_system-win-x86_64.dll
:maven 依赖
<dependency>
<groupId>org.scalanlp</groupId>
<artifactId>breeze_2.10</artifactId> <!-- or 2.11 -->
<version>0.11.2</version>
</dependency>
<dependency>
<groupId>org.scalanlp</groupId>
<artifactId>breeze-natives_2.10</artifactId> <!-- or 2.11 -->
<version>0.11.2</version>
</dependency>
---------------------------------------------------------------------------------------------------
OpenBLAS
:下载
http://netix.dl.sourceforge.net/project/openblas/v0.2.15/OpenBLAS-v0.2.15-Win64-int32.zip
解压到D:\Develop\OpenBLAS\OpenBLAS-v0.2.15-Win64-int32\bin
http://netix.dl.sourceforge.net/project/openblas/v0.2.15/mingw64_dll.zip
解压到D:\Develop\OpenBLAS\OpenBLAS-v0.2.15-Win64-int32\bin
:添加该路径到PATH中
---------------------------------------------------------------------------------------------------
NetLib
:maven 配置
<dependency>
<groupId>com.github.fommil.netlib</groupId>
<artifactId>all</artifactId>
<version>1.1.2</version>
<type>pom</type>
</dependency>
:需要
libblas3.dll(拷贝libopenblas.dll为其名)
liblapack3.dll(拷贝libopenblas.dll为其名)
libgfortran-1-3.dll(mingw64_dll.zip)
libquadmath-0.dll(mingw64_dll.zip)
libgcc_s_seh-1.dll(mingw64_dll.zip)
:测试NetLib依赖安装
package com.bbw5.netlib;
import com.github.fommil.netlib.*;
public class NetLibTest {
public static void main(String[] args) {
NativeRefBLAS.getInstance();
NativeRefLAPACK.getInstance();
NativeRefARPACK.getInstance();
}
}
:未添加依赖DLL到PATH时启动日志
三月 08, 2016 6:48:40 下午 com.github.fommil.netlib.BLAS <clinit>
警告: Failed to load implementation from: com.github.fommil.netlib.NativeSystemBLAS
三月 08, 2016 6:48:41 下午 com.github.fommil.jni.JniLoader liberalLoad
信息: successfully loaded C:\Users\bmb\AppData\Local\Temp\jniloader5403646722246214183netlib-native_ref-win-x86_64.dll
三月 08, 2016 6:48:41 下午 com.github.fommil.netlib.LAPACK <clinit>
警告: Failed to load implementation from: com.github.fommil.netlib.NativeSystemLAPACK
三月 08, 2016 6:48:41 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_ref-win-x86_64.dll
三月 08, 2016 6:48:41 下午 com.github.fommil.netlib.ARPACK <clinit>
警告: Failed to load implementation from: com.github.fommil.netlib.NativeSystemARPACK
三月 08, 2016 6:48:41 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_ref-win-x86_64.dll
:添加依赖DLL到PATH时启动日志
三月 08, 2016 7:00:45 下午 com.github.fommil.jni.JniLoader liberalLoad
信息: successfully loaded C:\Users\bmb\AppData\Local\Temp\jniloader1109347605842521850netlib-native_system-win-x86_64.dll
三月 08, 2016 7:00:45 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_system-win-x86_64.dll
三月 08, 2016 7:00:45 下午 com.github.fommil.jni.JniLoader load
信息: already loaded netlib-native_system-win-x86_64.dll