-1
此庫以zip格式下載並解壓縮爲整個文件夾結構而不是jar文件。如何將JBLAS庫導入到Android工作室
https://github.com/mikiobraun/jblas-examples/blob/master/src/CG.java
我需要得到這個導入到Android Studio中一些幫助。
此庫以zip格式下載並解壓縮爲整個文件夾結構而不是jar文件。如何將JBLAS庫導入到Android工作室
https://github.com/mikiobraun/jblas-examples/blob/master/src/CG.java
我需要得到這個導入到Android Studio中一些幫助。
project/app/libs
目錄(創建庫的應用程序文件夾下的文件夾,如果不存在的話)。添加.jar文件依賴於你的應用程序的build.gradle
文件:安卓的
dependencies {
// ... other dependencies
compile files('libs/jblas-1.2.4.jar')
}
高性能計算的部分叫的renderScript已預定義BLAS功能:https://developer.android.com/reference /android/renderscript/ScriptIntrinsicBLAS.html –