diff --git a/src/operators/math/im2col.cpp b/src/operators/math/im2col.cpp index e4d0c816d779843eeb5cb76208cd0902e6e1b757..7b0b974b542a83d381727128887bef8a48ce937f 100644 --- a/src/operators/math/im2col.cpp +++ b/src/operators/math/im2col.cpp @@ -15,7 +15,7 @@ limitations under the License. */ #include "operators/math/im2col.h" #include #ifdef __ARM_NEON -#include +#include #endif #include "common/types.h" namespace paddle_mobile { diff --git a/test/net/test_mobilenet+ssd.cpp b/test/net/test_mobilenet+ssd.cpp index f16f91ebbe61d385f6125fe70c388f752afc8dba..051d5f343b8d0fae0b711be0ec762a6727b4e65b 100644 --- a/test/net/test_mobilenet+ssd.cpp +++ b/test/net/test_mobilenet+ssd.cpp @@ -19,8 +19,10 @@ limitations under the License. */ int main() { paddle_mobile::PaddleMobile paddle_mobile; auto time1 = time(); - - if (paddle_mobile.Load(g_mobilenet_ssd, false)) { +// auto isok = paddle_mobile.Load(g_mobilenet_ssd_gesture + "/model", +// g_mobilenet_ssd_gesture + "/params", true); + auto isok = paddle_mobile.Load(g_mobilenet_ssd, false); + if (isok) { auto time2 = time(); DLOG << "load cost :" << time_diff(time1, time1) << "ms";