Thanks for the great library.
I want to run mobilenet (in benchmark example) on ARM in jni and model was converted successfully.
I follow the arm inference example classification.cpp.
Model loaded successfully and graph.get_outs() returns OK.
But when call
Net<ARM, AK_FLOAT, Precision::FP32, OpRunType::SYNC> net_executer(graph, ctx1, true);
app crashes.
Crash context is following module in net.cpp.
if you linked static lib in your project, please add "-Wl,--whole-archive ${anakin_lib_static} -Wl,--no-whole-archive" in "target_link_libraries" in your CMakeList
Thanks for the great library. I want to run mobilenet (in benchmark example) on ARM in jni and model was converted successfully. I follow the arm inference example classification.cpp. Model loaded successfully and graph.get_outs() returns OK. But when call Net<ARM, AK_FLOAT, Precision::FP32, OpRunType::SYNC> net_executer(graph, ctx1, true); app crashes. Crash context is following module in net.cpp.
template<typename Ttype, DataType Dtype, Precision Ptype, OpRunType RunType> void Net<Ttype, Dtype, Ptype, RunType>::init(graph::Graph<Ttype, Dtype, Ptype>& graph, \ OpContextPtr ctx) {
node_ptr->get_op_name() is "Input". Global().get_list_op_name() returns empty list.
What can be the issue? Hope to any suggestions.