diff --git a/mobile/src/framework/executor.cpp b/mobile/src/framework/executor.cpp index cda5c5522c961c70fc15bf76fcd650a17bb76835..b64f5f4608e5ba0aa5ae7188e0cd2a905728165c 100644 --- a/mobile/src/framework/executor.cpp +++ b/mobile/src/framework/executor.cpp @@ -255,12 +255,14 @@ void Executor::LoadMemory(void **data, case VARTYPE_TYPE_INT8: LoadMemInternal( reinterpret_cast(data_buf), - reinterpret_cast(tensor->mutable_data()), tensor->numel()); + reinterpret_cast(tensor->mutable_data()), + tensor->numel()); break; case VARTYPE_TYPE_INT32: - LoadMemInternal(reinterpret_cast(data_buf), - reinterpret_cast(tensor->mutable_data()), - tensor->numel()); + LoadMemInternal( + reinterpret_cast(data_buf), + reinterpret_cast(tensor->mutable_data()), + tensor->numel()); break; default: LOG(kLOG_ERROR) << "data type is not supported";