-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support OpenMP for OpenBLAS and Eigen
- Loading branch information
Showing
7 changed files
with
23 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
PATH_add ~/android-sdk/platform-tools | ||
export NDK_ROOT=~/android-ndk-r10e | ||
PATH_add ${NDK_ROOT} | ||
export ANDROID_ABI="armeabi-v7a with NEON" | ||
export ANDROID_ABI="armeabi-v7a-hard-softfp with NEON" | ||
export USE_OPENBLAS=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule caffe
updated
20 files
+1 −1 | Makefile | |
+17 −0 | android/caffe_jni.cpp | |
+14 −8 | include/caffe/layers/base_conv_layer.hpp | |
+3 −0 | include/caffe/layers/conv_layer.hpp | |
+2 −0 | include/caffe/layers/im2col_layer.hpp | |
+12 −8 | include/caffe/util/im2col.hpp | |
+17 −2 | src/caffe/layer_factory.cpp | |
+17 −3 | src/caffe/layers/base_conv_layer.cpp | |
+3 −1 | src/caffe/layers/conv_layer.cpp | |
+3 −1 | src/caffe/layers/deconv_layer.cpp | |
+22 −3 | src/caffe/layers/im2col_layer.cpp | |
+4 −2 | src/caffe/layers/im2col_layer.cu | |
+4 −0 | src/caffe/proto/caffe.proto | |
+1 −1 | src/caffe/solvers/adam_solver.cpp | |
+124 −5 | src/caffe/test/test_convolution_layer.cpp | |
+18 −6 | src/caffe/test/test_im2col_kernel.cu | |
+49 −2 | src/caffe/test/test_im2col_layer.cpp | |
+33 −22 | src/caffe/util/im2col.cpp | |
+154 −92 | src/caffe/util/im2col.cu | |
+1 −1 | tools/caffe.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters